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