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

Unified Diff: chrome/test/data/extensions/samples/subscribe_page_action/manifest.json

Issue 126143: Converting the RSS subscription page to use a background page, as opposed to ... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 6 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/test/data/extensions/samples/subscribe_page_action/manifest.json
===================================================================
--- chrome/test/data/extensions/samples/subscribe_page_action/manifest.json (revision 18400)
+++ chrome/test/data/extensions/samples/subscribe_page_action/manifest.json (working copy)
@@ -1,26 +1,24 @@
-{
- "name": "RSS Subscription Extension",
- "description": "Adds one-click subscription to your toolbar",
- "version": "1.0",
- "permissions": [
- "http://*/*"
- ],
- "toolstrips": [
- "toolstrip.html"
- ],
- "content_scripts": [
- {
- "matches": ["http://*/*"],
- "js": ["feed_finder.js"]
- }
- ],
- "page_actions": [
- {
- "id": "RssPageAction",
- "name": "The PageAction for RSS subscriptions",
- "tooltip": "Click to subscribe to this feed",
- "icon": "feed-icon-16x16.png",
- "type": "tab"
- }
- ]
+{
+ "name": "RSS Subscription Extension",
+ "description": "Adds one-click subscription to your toolbar",
+ "version": "1.0",
+ "permissions": [
+ "http://*/*"
+ ],
+ "background_page": "background.html",
+ "content_scripts": [
+ {
+ "matches": ["http://*/*"],
+ "js": ["feed_finder.js"]
+ }
+ ],
+ "page_actions": [
+ {
+ "id": "RssPageAction",
+ "name": "The PageAction for RSS subscriptions",
+ "tooltip": "Click to subscribe to this feed",
+ "icon": "feed-icon-16x16.png",
+ "type": "tab"
+ }
+ ]
}
Property changes on: chrome\test\data\extensions\samples\subscribe_page_action\manifest.json
___________________________________________________________________
Added: svn:eol-style
+ LF

Powered by Google App Engine
This is Rietveld 408576698