1
0
mirror of https://github.com/golang/go synced 2024-11-15 10:50:37 -07:00
go/misc/chrome/gophertool/manifest.json
Shenghou Ma 171e72bf28 [release-branch.go1] misc/chrome/gophertool: fix manifest
««« backport 100ddb84c85d
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-09-22 05:53:59 +10: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"
]
}