| OLD | NEW |
| 1 { | 1 { |
| 2 "format_version": 1, | 2 "format_version": 1, |
| 3 "id": "00023456789ABCDEF0123456789ABCDEF012CEEE", | 3 "id": "00023456789ABCDEF0123456789ABCDEF012CEEE", |
| 4 "version": "1.0", | 4 "version": "2.0", |
| 5 "name": "Power Test", | 5 "name": "Power Test", |
| 6 "browser_action": { | 6 "browser_action": { |
| 7 "default_icon": "skin/chrome_bug.png", | 7 "default_icon": "skin/chrome_bug.png", |
| 8 "default_title": "test the web with the web" | 8 "default_title": "test the web with the web" |
| 9 }, | 9 }, |
| 10 "icons": { "48": "skin/chrome_bug.png", | 10 "icons": { "48": "skin/chrome_bug.png", |
| 11 "128": "skin/chrome_bug.png" }, | 11 "128": "skin/chrome_bug.png" }, |
| 12 "permissions": [ | 12 "permissions": [ |
| 13 "http://*/", "https://*/", "tabs" | 13 "http://*/", "https://*/", "tabs" |
| 14 ], | 14 ], |
| 15 "background_page": "background.html", | 15 "background_page": "background.html", |
| 16 "description": "GoogleTest", | 16 "description": "GoogleTest", |
| 17 "content_scripts": [ | 17 "content_scripts": [ |
| 18 { | 18 { |
| 19 "matches": ["http://localhost/testparams.html"], |
| 20 "js": ["testparams.js"] |
| 21 }, |
| 22 { |
| 19 "matches": ["http://*/*", "https://*/*"], | 23 "matches": ["http://*/*", "https://*/*"], |
| 20 "js": ["ct.js"], | 24 "js": ["ct.js"], |
| 21 "run_at": "document_end", | 25 "run_at": "document_end", |
| 22 "all_frames": false | 26 "all_frames": false |
| 23 } | 27 } |
| 24 ] | 28 ] |
| 25 } | 29 } |
| OLD | NEW |