diff options
Diffstat (limited to 'src/manifest.json')
-rw-r--r-- | src/manifest.json | 31 |
1 files changed, 20 insertions, 11 deletions
diff --git a/src/manifest.json b/src/manifest.json index ecf4867..7a78bef 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -8,7 +8,7 @@ "strict_min_version": "59.0" } }, - "version": "10.1.8.23rc1", + "version": "10.1.9rc1", "description": "__MSG_Description__", "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'none'", @@ -41,6 +41,9 @@ "lib/tld.js", "lib/LastListener.js", "lib/Messages.js", + "lib/CSP.js", + "lib/NetCSP.js", + "common/CapsCSP.js", "common/Policy.js", "common/locale.js", "common/Entities.js", @@ -48,6 +51,7 @@ "common/Storage.js", "ui/Prompts.js", "xss/XSS.js", + "bg/ReportingCSP.js", "bg/deferWebTraffic.js", "bg/ChildPolicies.js", "bg/main.js" @@ -56,6 +60,14 @@ "content_scripts": [ { + "matches": ["<all_urls>"], + "match_about_blank": true, + "all_frames": true, + "css": [ + "/content/content.css" + ] + }, + { "run_at": "document_start", "matches": ["<all_urls>"], "match_about_blank": true, @@ -63,21 +75,18 @@ "js": [ "lib/log.js", "lib/Messages.js", + "lib/CSP.js", + "common/CapsCSP.js", + "content/DocumentCSP.js", "content/onScriptDisabled.js", + "content/staticNS.js", "content/content.js", - "content/webglHook.js", "content/PlaceHolder.js", + "content/embeddingDocument.js", + "content/webglHook.js", "content/media.js" ] - }, - { - "matches": ["<all_urls>"], - "match_about_blank": true, - "all_frames": true, - "css": [ - "/content/content.css" - ] - } + } ], "options_ui": { |