1
0
mirror of https://github.com/golang/go synced 2024-09-24 03:10:16 -06:00
go/misc/chrome/gophertool/manifest.json

21 lines
378 B
JSON
Raw Normal View History

{
"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"
]
}