Chromium Code Reviews| Index: chrome/common/extensions/docs/examples/extensions/mappy/manifest.json |
| diff --git a/chrome/common/extensions/docs/examples/extensions/mappy/manifest.json b/chrome/common/extensions/docs/examples/extensions/mappy/manifest.json |
| index 9c3858e049db8644fe2722597a399bddb9e51356..971e4e8a0d601cca096b6847ccc714123f5f0cf7 100644 |
| --- a/chrome/common/extensions/docs/examples/extensions/mappy/manifest.json |
| +++ b/chrome/common/extensions/docs/examples/extensions/mappy/manifest.json |
| @@ -9,11 +9,13 @@ |
| ], |
| "permissions": [ |
| "tabs", |
| - "http://maps.google.com/*" |
| + "https://maps.google.com/*", |
| + "https://maps.googleapis.com/*" |
| ], |
| "page_action": { |
| "default_name": "Display Map", |
| "default_icon": "marker.png", |
| "popup": "popup.html" |
| - } |
| + }, |
| + "content_security_policy": "script-src 'self'; connect-src https://maps.googleapis.com; img-src https://maps.google.com" |
|
abarth-chromium
2011/10/16 19:48:16
Please add an object-src directive (ideally with '
Mike West
2011/10/16 21:14:57
Makes sense.
Would adding a `default-src` directi
|
| } |