| OLD | NEW |
| 1 { | 1 { |
| 2 "name": "Localize CSS scripts", | 2 "name": "Localize CSS scripts", |
| 3 "description": "Checks that messages in CSS content scripts get localized.", | 3 "description": "Checks that messages in CSS content scripts get localized.", |
| 4 "version": "0.1", | 4 "version": "0.1", |
| 5 "manifest_version": 2, |
| 5 "background_page": "background.html", | 6 "background_page": "background.html", |
| 6 "default_locale": "en", | 7 "default_locale": "en", |
| 7 "content_scripts": [ | 8 "content_scripts": [ |
| 8 { | 9 { |
| 9 "matches": ["http://*/*", "file://*/*"], | 10 "matches": ["http://*/*", "file://*/*"], |
| 10 "css": ["style.css"] | 11 "css": ["style.css"] |
| 11 } | 12 } |
| 12 ], | 13 ], |
| 13 "permissions": [ | 14 "permissions": [ |
| 14 "tabs", "http://*/*", "file://*/*" | 15 "tabs", "http://*/*", "file://*/*" |
| 15 ] | 16 ] |
| 16 } | 17 } |
| 17 | 18 |
| OLD | NEW |