aboutsummaryrefslogtreecommitdiff
path: root/misc/chrome
diff options
context:
space:
mode:
authorAmir Mohammad Saied <amir@gluegadget.com>2012-06-25 17:19:08 -0400
committerRuss Cox <rsc@golang.org>2012-06-25 17:19:08 -0400
commit4c98584ecd83fa39a4a1ef5bcb0a06c5b555dd92 (patch)
tree4257418b08d99e806ded8e29f705c79decea7fec /misc/chrome
parentc08ff027c42807ecf3fdab75e13dca5caab96323 (diff)
downloadgo-4c98584ecd83fa39a4a1ef5bcb0a06c5b555dd92.tar.gz
go-4c98584ecd83fa39a4a1ef5bcb0a06c5b555dd92.zip
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
Diffstat (limited to 'misc/chrome')
-rw-r--r--misc/chrome/gophertool/manifest.json5
1 files changed, 4 insertions, 1 deletions
diff --git a/misc/chrome/gophertool/manifest.json b/misc/chrome/gophertool/manifest.json
index 3a2540a862..1a2e920300 100644
--- a/misc/chrome/gophertool/manifest.json
+++ b/misc/chrome/gophertool/manifest.json
@@ -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"