Index: chrome/test/data/extensions/api_test/service_worker/content_script_fetch/manifest.json |
diff --git a/chrome/test/data/extensions/api_test/service_worker/content_script_fetch/manifest.json b/chrome/test/data/extensions/api_test/service_worker/content_script_fetch/manifest.json |
new file mode 100644 |
index 0000000000000000000000000000000000000000..1f458c41fb5d17a0e1d57f70d3bcbc4b2dbb01a9 |
--- /dev/null |
+++ b/chrome/test/data/extensions/api_test/service_worker/content_script_fetch/manifest.json |
@@ -0,0 +1,19 @@ |
+{ |
+ "name": "content script fetch", |
+ "version": "0.1", |
+ "manifest_version": 2, |
+ "description": "tests that content script initiated fetch should not go to the SW of page", |
+ "background": { |
+ "scripts": ["background.js"] |
+ }, |
+ "permissions": ["http://*/*", "tabs"], |
+ "content_scripts": [ |
+ { |
+ "matches": ["http://*/*"], |
+ "js": ["content_script.js"] |
+ } |
+ ], |
+ "web_accessible_resources": [ |
+ "data_for_content_script" |
+ ] |
+} |