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

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

Issue 12576018: Add chrome.power extension API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add copyright notice to example extension Created 7 years, 9 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
OLDNEW
(Empty)
1 {
2 "manifest_version": 2,
3
4 "name": "__MSG_extensionName__",
5 "description": "__MSG_extensionDescription__",
6 "version": "1.2",
7 "icons": {
8 "16": "images/icon-16.png",
9 "48": "images/icon-48.png",
10 "128": "images/icon-128.png"
11 },
12
13 "permissions": [
14 "experimental",
15 "power"
16 ],
17 "browser_action": {},
18 "background": {
19 "scripts": ["background.js"],
20 "persistent": false
21 },
22
23 "default_locale": "en"
24 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698