From 171e72bf28bda96328a6580f58bfa95398e6bd18 Mon Sep 17 00:00:00 2001 From: Shenghou Ma Date: Sat, 22 Sep 2012 05:53:59 +1000 Subject: [PATCH] [release-branch.go1] misc/chrome/gophertool: fix manifest MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit ««« backport 100ddb84c85d 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 »»» --- misc/chrome/gophertool/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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": { -- 2.50.0