1
0
mirror of https://github.com/golang/go synced 2024-10-03 22:21:22 -06:00
go/misc/chrome/gophertool/manifest.json
Amir Mohammad Saied 4c98584ecd misc/chrome/gophertool: Support for manifest version 1 is being phased out.
Manifest version 1 was deprecated in Chrome 18, and support will be phased
out according to the schedule available at:
http://code.google.com/chrome/extensions/manifestVersion.html

R=golang-dev, rsc
CC=golang-dev
https://golang.org/cl/6332053
2012-06-25 17:19:08 -04:00

21 lines
370 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",
"popup": "popup.html"
},
"omnibox": { "keyword": "golang" },
"icons": {
"16": "gopher.png"
},
"permissions": [
"tabs"
]
}