go/misc/chrome/gophertool/manifest.json
Shenghou Ma b213891c06 misc/chrome/gophertool: fix manifest
according to http://code.google.com/chrome/extensions/browserAction.html,
it should use "default_popup" instead of "popup".

R=golang-dev, adg
CC=golang-dev
https://golang.org/cl/6349077
2012-07-05 16:52:13 -04:00

21 lines
378 B
JSON

{
"name": "Hacking Gopher",
"version": "1.0",
"manifest_version": 2,
"description": "Go Hacking utility",
"background": {
"page": "background.html"
},
"browser_action": {
"default_icon": "gopher.png",
"default_popup": "popup.html"
},
"omnibox": { "keyword": "golang" },
"icons": {
"16": "gopher.png"
},
"permissions": [
"tabs"
]
}