Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 { | |
| 2 "name": "New Tab Page Injector", | |
| 3 "version": "0.1", | |
| 4 "manifest_version": 2, | |
| 5 "description": "Injects in the NTP", | |
| 6 "content_scripts": [{ | |
| 7 "matches": ["*://*/*"], | |
| 8 "js": ["script.js"], | |
| 9 "run_at": "document_end" | |
| 10 }], | |
| 11 "background": {"scripts": ["background.js"]}, | |
| 12 "permissions": ["tabs", "*://*/*"] | |
| 13 } | |
| OLD | NEW |