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

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

Issue 126074: Change extension id format back to mp-decimal, and change the (Closed)
Patch Set: make all the tests work again Created 11 years, 6 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 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDuUZGKCDbff6IRaxa4Pue7PPkxwPaNhG T3JEqppEsNWFjM80imEdqMbf3lrWqEfaHgaNku7nlpwPO1mu3/4Hr+XdNa5MhfnOnuPee4hyTLwOs3Vz z81wpbdzUxZSi2OmqMyI5oTaBYICfNHLwcuc65N5dbt6WKGeKgTpp4v7j7zwIDAQAB",
3 "version": "1.0.0.0",
4 "name": "My extension 1",
5 "description": "The first extension that I made.",
6 "toolstrips": [
7 "toolstrip1.html",
8 "toolstrip2.html"
9 ],
10 "permissions": ["http://*.google.com/*", "https://*.google.com/*"],
11 "content_scripts": [
12 {
13 "matches": ["http://*.google.com/*", "https://*.google.com/*"],
14 "js": ["script1.js", "script2.js"],
15 "css": ["style1.css", "style2.css", "style2.css"]
16 },
17 {
18 "matches": ["http://*.news.com/*"],
19 "js": ["js_files/script3.js"]
20 }
21 ]
22 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698