This commit is contained in:
gorhill 2017-07-21 07:48:50 -04:00
parent b0ff5396cf
commit f5ef83719c
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2
3 changed files with 86 additions and 78 deletions

View File

@ -20,7 +20,7 @@
<em:targetApplication> <em:targetApplication>
<Description> <Description>
<em:id>{{ec8030f7-c20a-464f-9b0e-13a3a9e97384}}</em:id> <em:id>{{ec8030f7-c20a-464f-9b0e-13a3a9e97384}}</em:id>
<em:minVersion>52.0a1</em:minVersion> <em:minVersion>54.0</em:minVersion>
<em:maxVersion>*</em:maxVersion> <em:maxVersion>*</em:maxVersion>
</Description> </Description>
</em:targetApplication> </em:targetApplication>

View File

@ -1,81 +1,89 @@
{ {
"manifest_version": 2, "applications":{
"gecko":{
"id":"uBlock0@raymondhill.net",
"strict_min_version":"54.0"
}
},
"author":"All uBlock Origin contributors",
"background":{
"page":"background.html"
},
"browser_action":{
"browser_style":false,
"default_icon":{
"19":"img/browsericons/icon19.png",
"38":"img/browsericons/icon38.png"
},
"default_title":"uBlock Origin",
"default_popup":"popup.html"
},
"commands":{
"launch-element-zapper":{
"suggested_key":{
"name": "uBlock Origin", },
"version": "1.9.15.101", "description":"__MSG_popupTipZapper__"
},
"launch-element-picker":{
"suggested_key":{
"applications": { },
"gecko": { "description":"__MSG_popupTipPicker__"
"id": "uBlock0@raymondhill.net", },
"strict_min_version": "52.0a1" "launch-logger":{
} "suggested_key":{
},
"commands": { },
"launch-element-zapper": { "description":"__MSG_popupTipLog__"
"suggested_key": { }
}, },
"description": "__MSG_popupTipZapper__" "content_scripts":[
}, {
"launch-element-picker": { "matches":[
"suggested_key": { "http://*/*",
}, "https://*/*"
"description": "__MSG_popupTipPicker__" ],
}, "js":[
"launch-logger": { "js/vapi-client.js",
"suggested_key": { "js/contentscript.js"
}, ],
"description": "__MSG_popupTipLog__" "run_at":"document_start",
} "all_frames":true
}, },
"default_locale": "en", {
"description": "__MSG_extShortDesc__", "matches":[
"icons": { "http://*/*",
"16": "img/icon_16.png", "https://*/*"
"128": "img/icon_128.png" ],
}, "js":[
"js/scriptlets/subscriber.js"
"browser_action": { ],
"browser_style": false, "run_at":"document_idle",
"default_icon": { "all_frames":false
"19": "img/browsericons/icon19.png", }
"38": "img/browsericons/icon38.png" ],
}, "default_locale":"en",
"default_title": "uBlock Origin", "description":"__MSG_extShortDesc__",
"default_popup": "popup.html" "icons":{
}, "16":"img/icon_16.png",
"128":"img/icon_128.png"
"author": "All uBlock Origin contributors", },
"background": { "manifest_version":2,
"page": "background.html" "name":"uBlock Origin",
}, "options_ui":{
"content_scripts": [ "page":"options_ui.html"
{ },
"matches": ["http://*/*", "https://*/*"], "permissions":[
"js": ["js/vapi-client.js", "js/contentscript.js"], "contextMenus",
"run_at": "document_start", "privacy",
"all_frames": true "storage",
}, "tabs",
{ "webNavigation",
"matches": ["http://*/*", "https://*/*"], "webRequest",
"js": ["js/scriptlets/subscriber.js"], "webRequestBlocking",
"run_at": "document_idle", "<all_urls>"
"all_frames": false ],
} "short_name":"uBlock₀",
], "version":"1.9.15.101"
"minimum_chrome_version": "26.0",
"options_ui": {
"page": "options_ui.html"
},
"permissions": [
"contextMenus",
"privacy",
"storage",
"tabs",
"webNavigation",
"webRequest",
"webRequestBlocking",
"<all_urls>"
],
"short_name": "uBlock₀"
} }

View File

@ -592,7 +592,7 @@ vAPI.tabs.onPopupUpdated = (function() {
source: 'switch', source: 'switch',
raw: 'no-popups: ' + µb.hnSwitches.z + ' true' raw: 'no-popups: ' + µb.hnSwitches.z + ' true'
}; };
return 1; result = 1;
} }
} }