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

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

Issue 3681008: Improvements to the Google News extension (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 10 years, 2 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/news/manifest.json
===================================================================
--- chrome/common/extensions/docs/examples/extensions/news/manifest.json (revision 62273)
+++ chrome/common/extensions/docs/examples/extensions/news/manifest.json (working copy)
@@ -1,15 +1,18 @@
{
- "name": "News Reader",
- "version": "1.1",
- "description": "Displays the first 5 items from the 'Google News - top news' RSS feed in a popup.",
- "icons": { "128": "news_icon.png" },
+ "name": "__MSG_extName__",
+ "version": "1.2",
+ "description": "__MSG_extDesc__",
+ "icons": { "128": "images/news_icon.png" },
+ "default_locale":"en",
"browser_action": {
- "default_title": "Google News",
- "default_icon": "news_action.png",
- "popup": "feed.html"
+ "default_title": "__MSG_ext_default_title__",
+ "default_icon": "images/news_action.png",
+ "popup": "views/feed.html"
},
"permissions": [
"tabs",
"http://news.google.com/*"
- ]
+ ],
+ "options_page": "views/options.html",
+ "background_page": "views/background.html"
}

Powered by Google App Engine
This is Rietveld 408576698