2018-06-30 17:01:23 -06:00
|
|
|
{
|
|
|
|
"manifest_version": 2,
|
|
|
|
"default_locale": "en",
|
|
|
|
"name": "NoScript",
|
|
|
|
"applications": {
|
|
|
|
"gecko": {
|
|
|
|
"id": "{73a6fe31-595d-460b-a920-fcc0f8843232}",
|
|
|
|
"strict_min_version": "59.0"
|
|
|
|
}
|
|
|
|
},
|
2019-10-22 01:31:25 -06:00
|
|
|
"version": "11.0.4rc14",
|
2018-06-30 17:01:23 -06:00
|
|
|
"description": "__MSG_Description__",
|
2019-03-13 19:07:45 -06:00
|
|
|
"incognito": "spanning",
|
2018-06-30 17:01:23 -06:00
|
|
|
|
|
|
|
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'none'",
|
|
|
|
|
|
|
|
"icons": {
|
|
|
|
"48": "img/icon48.png",
|
|
|
|
"96": "img/icon96.png",
|
|
|
|
"256": "img/icon256.png"
|
|
|
|
},
|
|
|
|
|
|
|
|
"permissions": [
|
|
|
|
"contextMenus",
|
|
|
|
"privacy",
|
|
|
|
"storage",
|
|
|
|
"tabs",
|
|
|
|
"unlimitedStorage",
|
|
|
|
"webNavigation",
|
|
|
|
"webRequest",
|
|
|
|
"webRequestBlocking",
|
|
|
|
"<all_urls>"
|
|
|
|
],
|
|
|
|
|
|
|
|
"background": {
|
|
|
|
"persistent": true,
|
|
|
|
"scripts": [
|
2019-01-31 16:14:50 -07:00
|
|
|
"lib/UA.js",
|
|
|
|
"lib/browser-polyfill.js",
|
2018-06-30 17:01:23 -06:00
|
|
|
"lib/uuid.js",
|
2019-09-27 06:24:26 -06:00
|
|
|
"lib/SyncMessage.js",
|
2018-06-30 17:01:23 -06:00
|
|
|
"lib/log.js",
|
|
|
|
"lib/include.js",
|
|
|
|
"lib/punycode.js",
|
|
|
|
"lib/tld.js",
|
2018-08-06 07:59:47 -06:00
|
|
|
"lib/LastListener.js",
|
2018-08-21 15:54:04 -06:00
|
|
|
"lib/Messages.js",
|
2018-08-26 08:33:40 -06:00
|
|
|
"lib/CSP.js",
|
|
|
|
"lib/NetCSP.js",
|
2019-09-28 16:47:58 -06:00
|
|
|
"lib/TabCache.js",
|
2018-08-26 08:33:40 -06:00
|
|
|
"common/CapsCSP.js",
|
2018-06-30 17:01:23 -06:00
|
|
|
"common/Policy.js",
|
|
|
|
"common/locale.js",
|
|
|
|
"common/Entities.js",
|
|
|
|
"common/SyntaxChecker.js",
|
|
|
|
"common/Storage.js",
|
|
|
|
"ui/Prompts.js",
|
|
|
|
"xss/XSS.js",
|
2018-08-26 08:33:40 -06:00
|
|
|
"bg/ReportingCSP.js",
|
2018-07-22 11:14:54 -06:00
|
|
|
"bg/deferWebTraffic.js",
|
2018-08-27 17:23:27 -06:00
|
|
|
"bg/Defaults.js",
|
|
|
|
"bg/RequestGuard.js",
|
|
|
|
"bg/Settings.js",
|
2018-06-30 17:01:23 -06:00
|
|
|
"bg/main.js"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
|
|
|
|
"content_scripts": [
|
2018-08-26 16:31:37 -06:00
|
|
|
{
|
|
|
|
"matches": ["<all_urls>"],
|
|
|
|
"match_about_blank": true,
|
|
|
|
"all_frames": true,
|
|
|
|
"css": [
|
|
|
|
"/content/content.css"
|
|
|
|
]
|
|
|
|
},
|
2018-06-30 17:01:23 -06:00
|
|
|
{
|
|
|
|
"run_at": "document_start",
|
|
|
|
"matches": ["<all_urls>"],
|
|
|
|
"match_about_blank": true,
|
|
|
|
"all_frames": true,
|
|
|
|
"js": [
|
2019-01-31 16:14:50 -07:00
|
|
|
"lib/UA.js",
|
|
|
|
"lib/browser-polyfill.js",
|
2018-06-30 17:01:23 -06:00
|
|
|
"lib/log.js",
|
2018-12-26 15:44:36 -07:00
|
|
|
"lib/uuid.js",
|
2019-09-27 06:24:26 -06:00
|
|
|
"lib/SyncMessage.js",
|
2018-12-26 15:44:36 -07:00
|
|
|
"lib/sha256.js",
|
2018-08-22 08:34:16 -06:00
|
|
|
"lib/Messages.js",
|
2018-08-26 09:43:01 -06:00
|
|
|
"lib/CSP.js",
|
|
|
|
"common/CapsCSP.js",
|
|
|
|
"content/DocumentCSP.js",
|
2018-06-30 17:01:23 -06:00
|
|
|
"content/onScriptDisabled.js",
|
2018-08-26 16:31:37 -06:00
|
|
|
"content/staticNS.js",
|
2018-06-30 17:01:23 -06:00
|
|
|
"content/content.js",
|
2018-08-15 08:41:55 -06:00
|
|
|
"content/PlaceHolder.js",
|
2018-08-26 16:31:37 -06:00
|
|
|
"content/embeddingDocument.js",
|
|
|
|
"content/webglHook.js",
|
2019-07-21 15:29:19 -06:00
|
|
|
"content/media.js",
|
|
|
|
"content/sanitizePaste.js"
|
2018-06-30 17:01:23 -06:00
|
|
|
]
|
2018-09-26 09:18:54 -06:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"run_at": "document_start",
|
|
|
|
"matches": ["ftp://*/*"],
|
|
|
|
"js": [
|
|
|
|
"content/ftp.js"
|
|
|
|
]
|
2018-08-26 16:31:37 -06:00
|
|
|
}
|
2018-06-30 17:01:23 -06:00
|
|
|
],
|
|
|
|
|
|
|
|
"options_ui": {
|
|
|
|
"page": "ui/options.html",
|
|
|
|
"open_in_tab": true
|
|
|
|
},
|
|
|
|
|
|
|
|
"browser_action": {
|
|
|
|
"default_area": "navbar",
|
|
|
|
"default_title": "NoScript",
|
|
|
|
"default_icon": {
|
|
|
|
"64": "img/ui-maybe64.png"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
"commands": {
|
|
|
|
"_execute_browser_action": {
|
2019-01-31 16:14:50 -07:00
|
|
|
"description": "NoScript UI",
|
2018-06-30 17:01:23 -06:00
|
|
|
"suggested_key": {
|
|
|
|
"default": "Alt+Shift+N"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"togglePermissions": {
|
2019-01-31 16:14:50 -07:00
|
|
|
"description": "Toggle permissions",
|
2018-06-30 17:01:23 -06:00
|
|
|
"suggested_key": {
|
|
|
|
"default": "Ctrl+Shift+T"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|