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

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

Issue 531953002: Remove windows.onCreated hack from Keep Awake extension. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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 | « 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.7", 6 "version": "1.8",
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 "power", 14 "power",
15 "storage" 15 "storage"
16 ], 16 ],
17 "browser_action": { 17 "browser_action": {
18 "default_title": "__MSG_disabledTitle__", 18 "default_title": "__MSG_disabledTitle__",
19 "default_icon": { 19 "default_icon": {
20 "19": "images/night-19.png", 20 "19": "images/night-19.png",
21 "38": "images/night-38.png" 21 "38": "images/night-38.png"
22 } 22 }
23 }, 23 },
24 "background": { 24 "background": {
25 "scripts": ["background.js"], 25 "scripts": ["background.js"],
26 "persistent": false 26 "persistent": false
27 }, 27 },
28 28
29 "default_locale": "en" 29 "default_locale": "en"
30 } 30 }
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