Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2946)

Unified Diff: chrome/test/data/extensions/api_test/service_worker/content_script_fetch/manifest.json

Issue 1390943003: Bypass ServiceWorker when the request originates from isolated world. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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"
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698