| 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
|
|
|
|
|