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

Side by Side Diff: chrome/test/data/extensions/content_script_inject/manifest.json

Issue 60112: Implement chromium.self in content scripts, fix bugs (Closed)
Patch Set: fixedy fixedy Created 11 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 "id": "00123456789ABCDEF0123456789ABCDEF0123456",
3 "version": "1.0.0.0",
4 "name": "User script inject",
5 "content_scripts": [
6 {
7 "matches": ["file://*/content_script_inject_page.html"],
8 "css": ["script1.css"],
9 "js": ["js_test.js", "script1a.js", "script1b.js"]
10 },
11 {
12 "matches": ["file://*/content_script_inject_page.html"],
13 "js": ["js_test.js", "script2.js"]
14 },
15 {
16 "matches": ["file://*/content_script_inject_page.html"],
17 "js": ["js_test.js", "script3.js"],
18 "run_at": "document_start"
19 }
20 ]
21 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698