Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(50)

Unified Diff: go-back-with-backspace/manifest.json

Issue 2325963003: Add options and a browser-action popup. (Closed) Base URL: https://chromium.googlesource.com/chromium/extensions-by-google.git@master
Patch Set: Comments and copyrights Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: go-back-with-backspace/manifest.json
diff --git a/go-back-with-backspace/manifest.json b/go-back-with-backspace/manifest.json
index f16ae59a180b44df4e244fbe2f7402ffc04aa724..b6c453a7ddfb0331b7fd08aa226f781c67293cc2 100644
--- a/go-back-with-backspace/manifest.json
+++ b/go-back-with-backspace/manifest.json
@@ -15,6 +15,13 @@
"scripts": ["background.js"],
"persistent": false
},
+ "browser_action": {
+ "default_icon": {
+ "19": "icons/icon19.png",
+ "38": "icons/icon38.png"
+ },
+ "default_popup": "pages/popup.html"
+ },
"content_scripts": [
{
"matches": ["<all_urls>"],
@@ -22,5 +29,13 @@
"all_frames": true,
"run_at": "document_start"
}
+ ],
+ "options_ui": {
+ "page": "pages/options.html",
+ "chrome_style": true
+ },
+ "permissions": [
+ "storage",
+ "activeTab"
]
}

Powered by Google App Engine
This is Rietveld 408576698