| 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.2.5", | 4 "version": "1.3", |
| 5 "permissions": [ | 5 "permissions": [ |
| 6 "tabs", | 6 "tabs", |
| 7 "http://*/*" | 7 "http://*/*" |
| 8 ], | 8 ], |
| 9 "background_page": "background.html", | 9 "background_page": "background.html", |
| 10 "content_scripts": [ | 10 "content_scripts": [ |
| 11 { | 11 { |
| 12 "matches": ["http://*/*", "file://*.*"], | 12 "matches": ["http://*/*", "file://*.*"], |
| 13 "js": ["feed_finder.js"] | 13 "js": ["feed_finder.js"] |
| 14 } | 14 } |
| 15 ], | 15 ], |
| 16 "icons": { "128": "feed-icon-128x128.png" }, |
| 16 "page_actions": [ | 17 "page_actions": [ |
| 17 { | 18 { |
| 18 "id": "RssPageAction", | 19 "id": "RssPageAction", |
| 19 "name": "Subscribe to this feed", | 20 "name": "Subscribe to this feed", |
| 20 "icons": [ | 21 "icons": [ |
| 21 "feed-icon-16x16.png" | 22 "feed-icon-16x16.png" |
| 22 ] | 23 ] |
| 23 } | 24 } |
| 24 ] | 25 ] |
| 25 } | 26 } |
| OLD | NEW |