|
1 | 1 | { |
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" |
17 | 10 | }, |
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__" |
23 | 17 | }, |
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__" |
32 | 20 | }, |
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 |
37 | 38 | }, |
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 | + ] |
77 | 89 | } |
0 commit comments