Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 { | 1 { |
| 2 "name": "Activity Log Test Extension", | 2 "name": "Activity Log Test Extension", |
| 3 "version": "0.1", | 3 "version": "0.1", |
| 4 "description": "Testing the Activity Log", | 4 "description": "Testing the Activity Log", |
| 5 "permissions": [ "cookies", "tabs", "webRequest", "webRequestBlocking", | 5 "permissions": [ "cookies", "tabs", "webRequest", "webRequestBlocking", |
| 6 "http://*/*", "https://*/*" ], | 6 "http://*/*", "https://*/*", "storage" ], |
| 7 "options_page": "options.html", | 7 "options_page": "options.html", |
| 8 "manifest_version": 2, | 8 "manifest_version": 2, |
| 9 "omnibox": { "keyword" : "hello" } | 9 "omnibox": { "keyword" : "hello" }, |
| 10 "content_scripts": [ | |
|
palmer
2013/04/10 23:52:48
google.bw doesn't exist?
felt
2013/04/11 20:56:57
Done.
| |
| 11 { | |
| 12 "matches": ["http://www.google.bw/*"], | |
| 13 "js": ["google_cs.js"] | |
| 14 } | |
| 15 ] | |
| 10 } | 16 } |
| OLD | NEW |