Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 { | |
| 2 "name": "Chrome Preprocessor Example", | |
| 3 "version": "0.1", | |
| 4 "description": "Simple hello-world example for chrome.devtools.inspectedWindow .reload() using preprocessor.", | |
| 5 "devtools_page": "chrome-preprocessor.html", | |
| 6 "manifest_version": 2, | |
| 7 "content_security_policy": "default-src 'self' chrome-extension-resource: 'u nsafe-eval'; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-eval'; connect-src *; frame-src *;", | |
|
Mike West
2013/09/04 08:54:37
'unsafe-eval' has no effect in the 'default-src' d
| |
| 8 "web_accessible_resources": | |
| 9 [ | |
| 10 "*" | |
| 11 ] | |
| 12 } | |
| OLD | NEW |