From 81c423a76335145d07d0d7e2d6b85ef124db6a89 Mon Sep 17 00:00:00 2001 From: Amir Mohammad Saied Date: Sat, 22 Sep 2012 05:53:49 +1000 Subject: [PATCH] [release-branch.go1] misc/chrome/gophertool: Support for manifest version 1 is being phased out. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit ««« backport 0f017230e6b4 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 »»» --- misc/chrome/gophertool/manifest.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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" -- 2.50.0