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

Side by Side 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: Response to comments 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 unified diff | Download patch
« no previous file with comments | « go-back-with-backspace/is_editable.js ('k') | go-back-with-backspace/pages/common.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 "name": "__MSG_extensionName__", 2 "name": "__MSG_extensionName__",
3 "description": "__MSG_extensionDescription__", 3 "description": "__MSG_extensionDescription__",
4 "default_locale": "en", 4 "default_locale": "en",
5 "version": "1.5", 5 "version": "1.6",
6 "manifest_version": 2, 6 "manifest_version": 2,
7 "minimum_chrome_version": "52", 7 "minimum_chrome_version": "52",
8 "icons": { 8 "icons": {
9 "16": "icons/icon16.png", 9 "16": "icons/icon16.png",
10 "32": "icons/icon32.png", 10 "32": "icons/icon32.png",
11 "48": "icons/icon48.png", 11 "48": "icons/icon48.png",
12 "128": "icons/icon128.png" 12 "128": "icons/icon128.png"
13 }, 13 },
14 "background": { 14 "background": {
15 "scripts": ["background.js"], 15 "scripts": ["background.js"],
16 "persistent": false 16 "persistent": false
17 }, 17 },
18 "browser_action": {
19 "default_icon": {
20 "19": "icons/icon19.png",
21 "38": "icons/icon38.png"
22 },
23 "default_popup": "pages/popup.html"
24 },
18 "content_scripts": [ 25 "content_scripts": [
19 { 26 {
20 "matches": ["<all_urls>"], 27 "matches": ["<all_urls>"],
21 "js": ["is_editable.js", "content_script.js"], 28 "js": ["is_editable.js", "content_script.js"],
22 "all_frames": true, 29 "all_frames": true,
23 "run_at": "document_start" 30 "run_at": "document_start"
24 } 31 }
32 ],
33 "options_ui": {
34 "page": "pages/options.html",
35 "chrome_style": true
36 },
37 "permissions": [
38 "storage",
39 "activeTab"
25 ] 40 ]
26 } 41 }
OLDNEW
« no previous file with comments | « go-back-with-backspace/is_editable.js ('k') | go-back-with-backspace/pages/common.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698