| OLD | NEW |
| (Empty) | |
| 1 { |
| 2 "name": "RSS Subscription Extension", |
| 3 "description": "Adds one-click subscription to your toolbar", |
| 4 "version": "1.0", |
| 5 "permissions": [ |
| 6 "http://*/*" |
| 7 ], |
| 8 "toolstrips": [ |
| 9 "toolstrip.html" |
| 10 ], |
| 11 "content_scripts": [ |
| 12 { |
| 13 "matches": ["http://*/*"], |
| 14 "js": ["feed_finder.js"] |
| 15 } |
| 16 ], |
| 17 "page_actions": [ |
| 18 { |
| 19 "id": "RssPageAction", |
| 20 "name": "The PageAction for RSS subscriptions", |
| 21 "tooltip": "Click to subscribe to this feed", |
| 22 "icon": "feed-icon-16x16.png", |
| 23 "type": "tab" |
| 24 } |
| 25 ] |
| 26 } |
| OLD | NEW |