blob: dbcfe06b88ed1d8dfc7f8652df6dce9e34e5433d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{
"name": "Mappy",
"version": "0.6",
"description": "Finds addresses in the web page you're on and pops up a map window.",
"icons": { "128": "icon.png" },
"content_scripts": [
{ "matches": ["http://*/*"], "js": ["mappy_content_script.js"] }
],
"permissions": [
"tabs",
"http://maps.google.com/*"
],
"browser_action": {
"name": "Display Map",
"icons": ["marker.png"],
"popup": { "path": "popup.html", "height": 512 }
}
}
|