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

Side by Side Diff: chrome/test/data/extensions/good/Extensions/behllobkkfkfnphdnhnkndlbkcpglgmj/1.0.0.0/manifest.json

Issue 8826010: Update more manifests to manifest_version 2 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years 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 | Annotate | Revision Log
OLDNEW
1 { 1 {
2 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDuUZGKCDbff6IRaxa4Pue7PPkxwPaNhG T3JEqppEsNWFjM80imEdqMbf3lrWqEfaHgaNku7nlpwPO1mu3/4Hr+XdNa5MhfnOnuPee4hyTLwOs3Vz z81wpbdzUxZSi2OmqMyI5oTaBYICfNHLwcuc65N5dbt6WKGeKgTpp4v7j7zwIDAQAB", 2 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDuUZGKCDbff6IRaxa4Pue7PPkxwPaNhG T3JEqppEsNWFjM80imEdqMbf3lrWqEfaHgaNku7nlpwPO1mu3/4Hr+XdNa5MhfnOnuPee4hyTLwOs3Vz z81wpbdzUxZSi2OmqMyI5oTaBYICfNHLwcuc65N5dbt6WKGeKgTpp4v7j7zwIDAQAB",
3 "version": "1.0.0.0", 3 "version": "1.0.0.0",
4 "manifest_version": 2,
4 "name": "__MSG_chrome_extension_name__", 5 "name": "__MSG_chrome_extension_name__",
5 "description": "__MSG_chrome_extension_description__", 6 "description": "__MSG_chrome_extension_description__",
6 "icons": { 7 "icons": {
7 "128": "icon_128.png" 8 "128": "icon_128.png"
8 }, 9 },
9 "default_locale": "en_US", 10 "default_locale": "en_US",
10 "background_page": "backgroundpage.html", 11 "background_page": "backgroundpage.html",
11 "permissions": ["tabs", "http://*.google.com/*", "https://*.google.com/*"], 12 "permissions": ["tabs", "http://*.google.com/*", "https://*.google.com/*"],
12 "content_scripts": [ 13 "content_scripts": [
13 { 14 {
14 "matches": ["file://*", "http://*.google.com/*", "https://*.google.com/*"] , 15 "matches": ["file://*", "http://*.google.com/*", "https://*.google.com/*"] ,
15 "js": ["script1.js", "script2.js"], 16 "js": ["script1.js", "script2.js"],
16 "css": ["style1.css", "style2.css", "style2.css"] 17 "css": ["style1.css", "style2.css", "style2.css"]
17 }, 18 },
18 { 19 {
19 "matches": ["http://*.news.com/*"], 20 "matches": ["http://*.news.com/*"],
20 "js": ["js_files/script3.js"] 21 "js": ["js_files/script3.js"]
21 } 22 }
22 ] 23 ]
23 } 24 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698