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

Unified Diff: chrome/common/extensions/docs/examples/extensions/calendar/manifest.json

Issue 890173003: Replace the sample Calendar extension with a deprecation notice (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 5 years, 11 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/extensions/calendar/manifest.json
diff --git a/chrome/common/extensions/docs/examples/extensions/calendar/manifest.json b/chrome/common/extensions/docs/examples/extensions/calendar/manifest.json
index 82748309a7d7f4c13aa3eabe56d2a56c2ea5b9af..51ee7441e176b7372b31ce182fdd9ee33237598f 100644
--- a/chrome/common/extensions/docs/examples/extensions/calendar/manifest.json
+++ b/chrome/common/extensions/docs/examples/extensions/calendar/manifest.json
@@ -4,19 +4,28 @@
"manifest_version": 2,
"default_locale":"en",
"options_page": "views/options.html",
- "version": "1.5.0",
+ "options_ui": {
+ "page": "views/options.html",
+ "chrome_style": true
+ },
+ "version": "2.0.0",
"background": {
- "page": "views/background.html",
+ "scripts": ["javascript/background.js"],
"persistent": false
- },
+ },
"permissions": [
- "alarms", "tabs", "webNavigation", "http://*.google.com/", "https://*.google.com/"
- ],
+ "notifications"
+ ],
"browser_action": {
+ "default_icon": {
+ "19": "images/icon-19.png",
+ "38": "images/icon-38.png"
+ },
"default_title": "__MSG_title__"
},
"icons": {
- "128": "images/icon-128.gif",
- "16":"images/icon-16.gif"
+ "128": "images/icon-128.png",
+ "48": "images/icon-48.png",
+ "16":"images/icon-16.png"
}
}

Powered by Google App Engine
This is Rietveld 408576698