1
0
mirror of https://github.com/golang/go synced 2024-11-11 18:01:47 -07:00

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
This commit is contained in:
Amir Mohammad Saied 2012-06-25 17:19:08 -04:00 committed by Russ Cox
parent c08ff027c4
commit 4c98584ecd

View File

@ -1,8 +1,11 @@
{
"name": "Hacking Gopher",
"version": "1.0",
"manifest_version": 2,
"description": "Go Hacking utility",
"background_page": "background.html",
"background": {
"page": "background.html"
},
"browser_action": {
"default_icon": "gopher.png",
"popup": "popup.html"