forked from GoogleChrome/chrome-extensions-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
28 lines (28 loc) · 790 Bytes
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"name": "Mappy",
"version": "1.0",
"description": "Finds addresses in the web page you're on and pops up a map window.",
"icons": { "128": "icon.png" },
"background": {
"scripts": ["background.js"],
"persistent": false
},
"content_scripts": [
{
"matches": ["http://*/*"],
"js": ["mappy_content_script.js"]
}
],
"permissions": [
"storage",
"https://maps.google.com/*",
"https://maps.googleapis.com/*"
],
"page_action": {
"default_name": "Display Map",
"default_icon": "marker.png",
"default_popup": "popup.html"
},
"manifest_version": 2,
"content_security_policy": "default-src 'none'; style-src 'self'; script-src 'self'; connect-src https://maps.googleapis.com; img-src https://maps.googleapis.com"
}