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

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

Issue 164039: Add module-level permissions to extensions. (Closed)
Patch Set: final nits Created 11 years, 4 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
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 "name": "My extension 1", 4 "name": "My extension 1",
5 "description": "The first extension that I made.", 5 "description": "The first extension that I made.",
6 "icons": { 6 "icons": {
7 "128": "icon_128.png" 7 "128": "icon_128.png"
8 }, 8 },
9 "toolstrips": [ 9 "toolstrips": [
10 { 10 {
11 "path": "toolstrip1.html", 11 "path": "toolstrip1.html",
12 "mole": "lorem_ipsum.html", 12 "mole": "lorem_ipsum.html",
13 "mole_height": 200 13 "mole_height": 200
14 }, 14 },
15 "toolstrip2.html" 15 "toolstrip2.html"
16 ], 16 ],
17 "permissions": ["http://*.google.com/*", "https://*.google.com/*"], 17 "permissions": ["tabs", "http://*.google.com/*", "https://*.google.com/*"],
18 "content_scripts": [ 18 "content_scripts": [
19 { 19 {
20 "matches": ["file://*", "http://*.google.com/*", "https://*.google.com/*"] , 20 "matches": ["file://*", "http://*.google.com/*", "https://*.google.com/*"] ,
21 "js": ["script1.js", "script2.js"], 21 "js": ["script1.js", "script2.js"],
22 "css": ["style1.css", "style2.css", "style2.css"] 22 "css": ["style1.css", "style2.css", "style2.css"]
23 }, 23 },
24 { 24 {
25 "matches": ["http://*.news.com/*"], 25 "matches": ["http://*.news.com/*"],
26 "js": ["js_files/script3.js"] 26 "js": ["js_files/script3.js"]
27 } 27 }
28 ] 28 ]
29 } 29 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698