mirror of
https://github.com/golang/go
synced 2024-11-02 11:50:30 +00:00
b213891c06
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
20 lines
378 B
JSON
20 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"
|
|
]
|
|
}
|