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..849aeb1c23c9afc75e41b7b2d7d6d8d8a4ead5d0 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": "default-src 'none'; style-src 'self'; script-src 'self'; connect-src https://maps.googleapis.com; img-src https://maps.google.com" |
} |