diff --git a/add-on/manifest.chromium.json b/add-on/manifest.chromium.json index 5a0c19643..66a44d035 100644 --- a/add-on/manifest.chromium.json +++ b/add-on/manifest.chromium.json @@ -1,3 +1,15 @@ { + "content_scripts": [ + { + "all_frames": true, + "js": [ + "dist/bundles/ipfsProxyContentScript.bundle.js" + ], + "matches": [ + "" + ], + "run_at": "document_start" + } + ], "incognito": "not_allowed" } diff --git a/add-on/manifest.common.json b/add-on/manifest.common.json index bb5d04d45..ace001921 100644 --- a/add-on/manifest.common.json +++ b/add-on/manifest.common.json @@ -45,18 +45,6 @@ "icons/ipfs-logo-on.svg", "icons/ipfs-logo-off.svg" ], - "content_scripts": [ - { - "all_frames": true, - "js": [ - "dist/bundles/ipfsProxyContentScript.bundle.js" - ], - "matches": [ - "" - ], - "run_at": "document_start" - } - ], "content_security_policy": "script-src 'self'; object-src 'self'; frame-src 'self';", "default_locale": "en" }