Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 { | |
| 2 "background_page": "background.html", | |
| 3 "content_scripts": [ { | |
| 4 "js": [ "script.js" ], | |
| 5 "matches": [ "http://*/*" ] | |
| 6 } ], | |
| 7 "description": "A page action with incorrect icon specification", | |
| 8 "name": "Test extension", | |
| 9 "page_actions": [ { | |
| 10 "icon": "chrome-16.png", | |
| 11 "id": "TestId", | |
| 12 "name": "Page action name", | |
| 13 "tooltip": "Page action tooltip" | |
| 14 } ], | |
| 15 "permissions": [ "http://*/*" ], | |
| 16 "version": "1.0" | |
| 17 } | |
| OLD | NEW |