OLD | NEW |
(Empty) | |
| 1 { |
| 2 "name": "Dart Web Components", |
| 3 "version": "1.0", |
| 4 "description": "An implementation for Dart Web Components. Requires the experi
mental webRequest chrome extension API.", |
| 5 "permissions": ["declarativeWebRequest", "http://*/*", "https://*/*"], |
| 6 "background": { |
| 7 "page": "background.html" |
| 8 }, |
| 9 "content_scripts": [ |
| 10 { |
| 11 "matches": ["<all_urls>"], |
| 12 "js": ["content_script.js"], |
| 13 "run_at": "document_start" |
| 14 } |
| 15 ], |
| 16 "web_accessible_resources": [ |
| 17 "dwc/dart.js" |
| 18 ], |
| 19 "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'
", |
| 20 "manifest_version": 2 |
| 21 } |
OLD | NEW |