Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 { | |
| 2 "name": "Console Collector", | |
| 3 "version": "1.0", | |
| 4 "manifest_version": 2, | |
| 5 "description": "Allow querying of the Javascript console.", | |
| 6 "browser_action": { | |
| 7 "name": "ConsoleCollector" | |
| 8 }, | |
| 9 "background": { | |
| 10 "scripts": ["background.js"], | |
| 11 "persistent": true | |
| 12 }, | |
| 13 "content_scripts": [ | |
| 14 { | |
| 15 "matches": ["http://*/*", "file://*" ], | |
| 16 "js": [ "content.js" ] | |
| 17 } | |
| 18 ], | |
| 19 "permissions": [ | |
| 20 "tabs", "http://*/*", "file://*", "debugger" | |
| 21 ] | |
| 22 } | |
| OLD | NEW |