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

Side by Side Diff: chrome/common/extensions/docs/examples/api/power/manifest.json

Issue 13493019: Update chrome.power example extension. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove tabs permission and bump to 1.6 Created 7 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « chrome/common/extensions/docs/examples/api/power/background.js ('k') | no next file » | 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 "manifest_version": 2, 2 "manifest_version": 2,
3 3
4 "name": "__MSG_extensionName__", 4 "name": "__MSG_extensionName__",
5 "description": "__MSG_extensionDescription__", 5 "description": "__MSG_extensionDescription__",
6 "version": "1.4", 6 "version": "1.6",
7 "icons": { 7 "icons": {
8 "16": "images/icon-16.png", 8 "16": "images/icon-16.png",
9 "48": "images/icon-48.png", 9 "48": "images/icon-48.png",
10 "128": "images/icon-128.png" 10 "128": "images/icon-128.png"
11 }, 11 },
12 12
13 "permissions": [ 13 "permissions": [
14 "experimental", 14 "experimental",
15 "power" 15 "power",
16 "storage"
16 ], 17 ],
17 "browser_action": { 18 "browser_action": {
18 "default_title": "__MSG_disabledTitle__", 19 "default_title": "__MSG_disabledTitle__",
19 "default_icon": { 20 "default_icon": {
20 "19": "images/night-19.png", 21 "19": "images/night-19.png",
21 "38": "images/night-38.png" 22 "38": "images/night-38.png"
22 } 23 }
23 }, 24 },
24 "background": { 25 "background": {
25 "scripts": ["background.js"], 26 "scripts": ["background.js"],
26 "persistent": false 27 "persistent": false
27 }, 28 },
28 29
29 "default_locale": "en" 30 "default_locale": "en"
30 } 31 }
OLDNEW
« no previous file with comments | « chrome/common/extensions/docs/examples/api/power/background.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698