| 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.6.2", | 4 "version": "1.6.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://*/*"], |
| 13 "js": ["feed_finder.js"] | 13 "js": ["feed_finder.js"] |
| 14 } | 14 } |
| 15 ], | 15 ], |
| 16 "icons": { "128": "feed-icon-128x128.png" }, | 16 "icons": { "128": "feed-icon-128x128.png" }, |
| 17 "page_action": { | 17 "page_action": { |
| 18 "default_title": "Subscribe to this feed", | 18 "default_title": "Subscribe to this feed", |
| 19 "default_icon": "feed-icon-16x16.png" | 19 "default_icon": "feed-icon-16x16.png" |
| 20 } | 20 } |
| 21 } | 21 } |
| OLD | NEW |