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

Side by Side Diff: chrome/test/data/extensions/api_test/content_scripts/about_blank_srcdoc/manifest.json

Issue 226663003: Allow content script insertion on about:-URLs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address reviewer's comments (matches->match) 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 unified diff | Download patch
OLDNEW
(Empty)
1 {
2 "name": "about:blank and about:srcdoc",
3 "version": "1.0",
4 "manifest_version": 2,
5 "description": "Tests that content scripts are injected in about:blank and abo ut:srcdoc frames if it has access to the parent frame.",
6 "background": {
7 "page": "test.html"
8 },
9 "permissions": ["*://*/*"],
10 "content_scripts": [
11 {
12 "matches": ["*://*/*"],
not at google - send to devlin 2014/04/21 22:34:41 if you test with "permissions" and "matches" that
robwu 2014/04/21 23:21:46 After removing "permissions": ["*://*/*"], the bro
13 "match_about_blank": true,
14 "js": ["content_script.js"],
15 "all_frames": true
16 }
17 ]
18 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698