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

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: Move GetEffectiveDocumentURL to ScriptContext Created 6 years, 7 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..b591cb21a3d66f52f6d7a300664e480c4d42d4f0 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,13 @@
"matches": ["http://*/*"],
"js": ["content_script.js"],
"all_frames": true
+ },
+ {
+ "run_at": "document_start",
+ "matches": ["http://does-not-match/"],
+ "match_about_blank": true,
+ "js": ["content_script2.js"],
+ "all_frames": true
}
]
}

Powered by Google App Engine
This is Rietveld 408576698