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

Side by Side Diff: chrome/test/data/extensions/extension1/manifest

Issue 18352: Miscellaneous changes to Extension class in prep for user scripts (Closed)
Patch Set: be more paranoid about accessing string indexes than is probably warranted Created 11 years, 11 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
« no previous file with comments | « chrome/browser/extensions/user_script_master.h ('k') | chrome/test/unit/unit_tests.scons » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 "format_version": 1, 2 "format_version": 1,
3 "id": "com.google.myextension1", 3 "id": "com.google.myextension1",
4 "version": "1.0", 4 "version": "1.0",
5 "name": "My extension 1", 5 "name": "My extension 1",
6 "description": "The first extension that I made.", 6 "description": "The first extension that I made.",
7 "content_scripts": [ 7 "user_scripts": [
8 "script1.user.js", 8 {
9 "script2.user.js" 9 "matches": ["http://*.google.com/*", "https://*.google.com/*"],
10 "files": ["script1.js"]
11 },
12 {
13 "matches": ["http://*.yahoo.com/*"],
14 "files": ["script2.js"]
15 }
10 ] 16 ]
11 } 17 }
OLDNEW
« no previous file with comments | « chrome/browser/extensions/user_script_master.h ('k') | chrome/test/unit/unit_tests.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698