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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: chrome/common/extensions/docs/examples/api/power/manifest.json
diff --git a/chrome/common/extensions/docs/examples/api/power/manifest.json b/chrome/common/extensions/docs/examples/api/power/manifest.json
new file mode 100644
index 0000000000000000000000000000000000000000..ccba84e65c0f0c54b022428752b779ded8aa05be
--- /dev/null
+++ b/chrome/common/extensions/docs/examples/api/power/manifest.json
@@ -0,0 +1,24 @@
+{
+ "manifest_version": 2,
+
+ "name": "__MSG_extensionName__",
+ "description": "__MSG_extensionDescription__",
+ "version": "1.2",
+ "icons": {
+ "16": "images/icon-16.png",
+ "48": "images/icon-48.png",
+ "128": "images/icon-128.png"
+ },
+
+ "permissions": [
+ "experimental",
+ "power"
+ ],
+ "browser_action": {},
+ "background": {
+ "scripts": ["background.js"],
+ "persistent": false
+ },
+
+ "default_locale": "en"
+}

Powered by Google App Engine
This is Rietveld 408576698