diff options
author | Shenghou Ma <minux.ma@gmail.com> | 2012-07-05 16:52:13 -0400 |
---|---|---|
committer | Shenghou Ma <minux.ma@gmail.com> | 2012-07-05 16:52:13 -0400 |
commit | b213891c06aece21cdfe0e8ebb672f061bb2d7e2 (patch) | |
tree | 212b53f5e2fd4381b489b879d93b72486dc4240d | |
parent | a49172663cb4082dcbafa8200b70c93b1c19314a (diff) | |
download | go-git-b213891c06aece21cdfe0e8ebb672f061bb2d7e2.tar.gz |
misc/chrome/gophertool: fix manifest
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
-rw-r--r-- | misc/chrome/gophertool/manifest.json | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/chrome/gophertool/manifest.json b/misc/chrome/gophertool/manifest.json index 1a2e920300..04386594ae 100644 --- a/misc/chrome/gophertool/manifest.json +++ b/misc/chrome/gophertool/manifest.json @@ -8,7 +8,7 @@ }, "browser_action": { "default_icon": "gopher.png", - "popup": "popup.html" + "default_popup": "popup.html" }, "omnibox": { "keyword": "golang" }, "icons": { |