diff options
Diffstat (limited to 'chrome/test/data/extensions/samples/mappy/manifest.json')
-rwxr-xr-x | chrome/test/data/extensions/samples/mappy/manifest.json | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/chrome/test/data/extensions/samples/mappy/manifest.json b/chrome/test/data/extensions/samples/mappy/manifest.json index 9deee91..dbcfe06 100755 --- a/chrome/test/data/extensions/samples/mappy/manifest.json +++ b/chrome/test/data/extensions/samples/mappy/manifest.json @@ -1,16 +1,18 @@ { "name": "Mappy", - "version": "0.4.1", + "version": "0.6", "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/*" - ] + ], + "browser_action": { + "name": "Display Map", + "icons": ["marker.png"], + "popup": { "path": "popup.html", "height": 512 } + } } |