| OLD | NEW |
| 1 { | 1 { |
| 2 "name": "RSS Subscription Extension", | 2 "name": "RSS Subscription Extension", |
| 3 "description": "Adds one-click subscription to your toolbar", | 3 "description": "Adds one-click subscription to your toolbar", |
| 4 "version": "1.1", | 4 "version": "1.1", |
| 5 "permissions": [ | 5 "permissions": [ |
| 6 "http://*/*" | 6 "http://*/*" |
| 7 ], | 7 ], |
| 8 "background_page": "background.html", | 8 "background_page": "background.html", |
| 9 "content_scripts": [ | 9 "content_scripts": [ |
| 10 { | 10 { |
| 11 "matches": ["http://*/*", "file://*.*"], | 11 "matches": ["http://*/*", "file://*.*"], |
| 12 "js": ["feed_finder.js"] | 12 "js": ["feed_finder.js"] |
| 13 } | 13 } |
| 14 ], | 14 ], |
| 15 "page_actions": [ | 15 "page_actions": [ |
| 16 { | 16 { |
| 17 "id": "RssPageAction", | 17 "id": "RssPageAction", |
| 18 "name": "Subscribe to this feed", | 18 "name": "Subscribe to this feed", |
| 19 "icons": [ | 19 "icons": [ |
| 20 "feed-icon-16x16.png", | 20 "feed-icon-16x16.png" |
| 21 "feed-icon-16x16-subscribed.png" | |
| 22 ] | 21 ] |
| 23 } | 22 } |
| 24 ] | 23 ] |
| 25 } | 24 } |
| OLD | NEW |