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

Unified Diff: chrome/test/data/extensions/api_test/content_scripts/about_blank_iframes/manifest.json

Issue 226663003: Allow content script insertion on about:-URLs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove permission warning for about:-scheme Created 6 years, 8 months 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/content_scripts/about_blank_iframes/manifest.json
diff --git a/chrome/test/data/extensions/api_test/content_scripts/about_blank_iframes/manifest.json b/chrome/test/data/extensions/api_test/content_scripts/about_blank_iframes/manifest.json
index f8e0312505d3ed99dad299cb79e725509a4a271c..1e788893a646c46124a2131e4b119df3ff226c0d 100644
--- a/chrome/test/data/extensions/api_test/content_scripts/about_blank_iframes/manifest.json
+++ b/chrome/test/data/extensions/api_test/content_scripts/about_blank_iframes/manifest.json
@@ -12,6 +12,12 @@
"matches": ["http://*/*"],
"js": ["content_script.js"],
"all_frames": true
+ },
+ {
+ "run_at": "document_start",
+ "matches": ["http://does-not-match/", "about:blank"],
+ "js": ["content_script2.js"],
+ "all_frames": true
}
]
}

Powered by Google App Engine
This is Rietveld 408576698