Skip to content

Commit 08495c4

Browse files
committed
complete "debian" as a target platform
1 parent d0c1c7c commit 08495c4

10 files changed

Lines changed: 556 additions & 168 deletions

File tree

platform/chromium/manifest.json

Lines changed: 83 additions & 71 deletions
Original file line numberDiff line numberDiff line change
@@ -1,77 +1,89 @@
11
{
2-
"manifest_version": 2,
3-
4-
"name": "uBlock Origin",
5-
"version": "1.15.11.0",
6-
7-
"commands": {
8-
"launch-element-zapper": {
9-
"description": "__MSG_popupTipZapper__"
10-
},
11-
"launch-element-picker": {
12-
"description": "__MSG_popupTipPicker__"
13-
},
14-
"launch-logger": {
15-
"description": "__MSG_popupTipLog__"
16-
}
2+
"author": "All uBlock Origin contributors",
3+
"background": {
4+
"page": "background.html"
5+
},
6+
"browser_action": {
7+
"default_icon": {
8+
"19": "img/browsericons/icon19.png",
9+
"38": "img/browsericons/icon38.png"
1710
},
18-
"default_locale": "en",
19-
"description": "__MSG_extShortDesc__",
20-
"icons": {
21-
"16": "img/icon_16.png",
22-
"128": "img/icon_128.png"
11+
"default_title": "uBlock Origin",
12+
"default_popup": "popup.html"
13+
},
14+
"commands": {
15+
"launch-element-zapper": {
16+
"description": "__MSG_popupTipZapper__"
2317
},
24-
25-
"browser_action": {
26-
"default_icon": {
27-
"19": "img/browsericons/icon19.png",
28-
"38": "img/browsericons/icon38.png"
29-
},
30-
"default_title": "uBlock Origin",
31-
"default_popup": "popup.html"
18+
"launch-element-picker": {
19+
"description": "__MSG_popupTipPicker__"
3220
},
33-
34-
"author": "All uBlock Origin contributors",
35-
"background": {
36-
"page": "background.html"
21+
"launch-logger": {
22+
"description": "__MSG_popupTipLog__"
23+
}
24+
},
25+
"content_scripts": [
26+
{
27+
"matches": [
28+
"http://*/*",
29+
"https://*/*"
30+
],
31+
"js": [
32+
"/js/vapi.js",
33+
"/js/vapi-client.js",
34+
"/js/contentscript.js"
35+
],
36+
"run_at": "document_start",
37+
"all_frames": true
3738
},
38-
"content_scripts": [
39-
{
40-
"matches": ["http://*/*", "https://*/*"],
41-
"js": ["/js/vapi.js", "/js/vapi-client.js", "/js/contentscript.js"],
42-
"run_at": "document_start",
43-
"all_frames": true
44-
},
45-
{
46-
"matches": ["http://*/*", "https://*/*"],
47-
"js": ["/js/scriptlets/subscriber.js"],
48-
"run_at": "document_idle",
49-
"all_frames": false
50-
}
51-
],
52-
"incognito": "split",
53-
"minimum_chrome_version": "45.0",
54-
"optional_permissions": [ "file:///*" ],
55-
"options_page": "dashboard.html",
56-
"options_ui": {
57-
"page": "options_ui.html"
58-
},
59-
"permissions": [
60-
"contextMenus",
61-
"privacy",
62-
"storage",
63-
"tabs",
64-
"unlimitedStorage",
65-
"webNavigation",
66-
"webRequest",
67-
"webRequestBlocking",
68-
"<all_urls>"
69-
],
70-
"short_name": "uBlock₀",
71-
"storage": {
72-
"managed_schema": "managed_storage.json"
73-
},
74-
"web_accessible_resources": [
75-
"/web_accessible_resources/*"
76-
]
39+
{
40+
"matches": [
41+
"http://*/*",
42+
"https://*/*"
43+
],
44+
"js": [
45+
"/js/scriptlets/subscriber.js"
46+
],
47+
"run_at": "document_idle",
48+
"all_frames": false
49+
}
50+
],
51+
"default_locale": "en",
52+
"description": "__MSG_extShortDesc__",
53+
"icons": {
54+
"16": "img/icon_16.png",
55+
"32": "img/icon_32.png",
56+
"64": "img/icon_64.png",
57+
"128": "img/icon_128.png"
58+
},
59+
"incognito": "split",
60+
"manifest_version": 2,
61+
"minimum_chrome_version": "45.0",
62+
"name": "uBlock Origin",
63+
"optional_permissions": [
64+
"file:///*"
65+
],
66+
"options_page": "dashboard.html",
67+
"options_ui": {
68+
"page": "options_ui.html"
69+
},
70+
"permissions": [
71+
"contextMenus",
72+
"privacy",
73+
"storage",
74+
"tabs",
75+
"unlimitedStorage",
76+
"webNavigation",
77+
"webRequest",
78+
"webRequestBlocking",
79+
"<all_urls>"
80+
],
81+
"short_name": "uBlock₀",
82+
"storage": {
83+
"managed_schema": "managed_storage.json"
84+
},
85+
"version": "1.15.11.0",
86+
"web_accessible_resources": [
87+
"/web_accessible_resources/*"
88+
]
7789
}

platform/debian/manifest.json

Lines changed: 105 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,105 @@
1+
{
2+
"applications": {
3+
"gecko": {
4+
5+
"strict_min_version": "52.0"
6+
}
7+
},
8+
"author": "All uBlock Origin contributors",
9+
"background": {
10+
"page": "background.html"
11+
},
12+
"browser_action": {
13+
"browser_style": false,
14+
"default_icon": {
15+
"19": "img/browsericons/icon19.png",
16+
"38": "img/browsericons/icon38.png"
17+
},
18+
"default_title": "uBlock Origin",
19+
"default_popup": "popup.html"
20+
},
21+
"commands": {
22+
"launch-element-zapper": {
23+
"description": "__MSG_popupTipZapper__"
24+
},
25+
"launch-element-picker": {
26+
"description": "__MSG_popupTipPicker__"
27+
},
28+
"launch-logger": {
29+
"description": "__MSG_popupTipLog__"
30+
}
31+
},
32+
"content_scripts": [
33+
{
34+
"matches": [
35+
"http://*/*",
36+
"https://*/*",
37+
"file://*/*"
38+
],
39+
"js": [
40+
"/js/vapi.js",
41+
"/js/vapi-client.js",
42+
"/js/contentscript.js"
43+
],
44+
"run_at": "document_start",
45+
"all_frames": true
46+
},
47+
{
48+
"matches": [
49+
"http://*/*",
50+
"https://*/*"
51+
],
52+
"js": [
53+
"/js/scriptlets/subscriber.js"
54+
],
55+
"run_at": "document_idle",
56+
"all_frames": false
57+
}
58+
],
59+
"default_locale": "en",
60+
"description": "__MSG_extShortDesc__",
61+
"icons": {
62+
"16": "img/icon_16.png",
63+
"32": "img/icon_32.png",
64+
"64": "img/icon_64.png",
65+
"128": "img/icon_128.png"
66+
},
67+
"incognito": "split",
68+
"manifest_version": 2,
69+
"minimum_chrome_version": "45.0",
70+
"name": "uBlock Origin",
71+
"optional_permissions": [
72+
"file:///*"
73+
],
74+
"options_ui": {
75+
"page": "dashboard.html",
76+
"open_in_tab": true
77+
},
78+
"permissions": [
79+
"contextMenus",
80+
"privacy",
81+
"storage",
82+
"tabs",
83+
"unlimitedStorage",
84+
"webNavigation",
85+
"webRequest",
86+
"webRequestBlocking",
87+
"<all_urls>"
88+
],
89+
"short_name": "uBlock₀",
90+
"sidebar_action": {
91+
"default_title": "__MSG_statsPageName__",
92+
"default_panel": "logger-ui.html",
93+
"default_icon": {
94+
"16": "img/ublock.svg",
95+
"48": "img/ublock.svg"
96+
}
97+
},
98+
"storage": {
99+
"managed_schema": "managed_storage.json"
100+
},
101+
"version": "1.9.15.101",
102+
"web_accessible_resources": [
103+
"/web_accessible_resources/*"
104+
]
105+
}

0 commit comments

Comments
 (0)