| OLD | NEW |
| 1 { | 1 { |
| 2 "background": { | 2 "background": { |
| 3 "persistent": false, |
| 3 "scripts": [ "background.js" ] | 4 "scripts": [ "background.js" ] |
| 4 }, | 5 }, |
| 5 "content_scripts": [ { | 6 "content_scripts": [ { |
| 6 "js": [ "sniff_common.js", "doc_start.js" ], | 7 "js": [ "sniff_common.js", "doc_start.js" ], |
| 7 "matches": [ "http://*/*", "https://*/*" ], | 8 "matches": [ "http://*/*", "https://*/*" ], |
| 8 "run_at": "document_start" | 9 "run_at": "document_start" |
| 9 }, { | 10 }, { |
| 10 "js": [ "sniff_common.js", "feed_finder.js" ], | 11 "js": [ "sniff_common.js", "feed_finder.js" ], |
| 11 "matches": [ "http://*/*", "https://*/*" ] | 12 "matches": [ "http://*/*", "https://*/*" ] |
| 12 } ], | 13 } ], |
| 13 "default_locale": "en", | 14 "default_locale": "en", |
| 14 "description": "__MSG_rss_subscription_description__", | 15 "description": "__MSG_rss_subscription_description__", |
| 15 "icons": { | 16 "icons": { |
| 16 "128": "feed-icon-128x128.png" | 17 "128": "feed-icon-128x128.png" |
| 17 }, | 18 }, |
| 18 "manifest_version": 2, | 19 "manifest_version": 2, |
| 19 "name": "__MSG_rss_subscription_name__", | 20 "name": "__MSG_rss_subscription_name__", |
| 20 "options_page": "options.html", | 21 "options_page": "options.html", |
| 21 "page_action": { | 22 "page_action": { |
| 22 "default_icon": "feed-icon-16x16.png", | 23 "default_icon": "feed-icon-16x16.png", |
| 23 "default_popup": "popup.html", | 24 "default_popup": "popup.html", |
| 24 "default_title": "__MSG_rss_subscription_default_title__" | 25 "default_title": "__MSG_rss_subscription_default_title__" |
| 25 }, | 26 }, |
| 26 "permissions": [ "tabs", "http://*/*", "https://*/*" ], | 27 "permissions": [ "tabs", "http://*/*", "https://*/*", "storage" ], |
| 27 "version": "2.2.1", | 28 "version": "2.2.2", |
| 28 "web_accessible_resources": [ "iframe.js", "style.css" ] | 29 "web_accessible_resources": [ "iframe.js", "style.css" ] |
| 29 } | 30 } |
| OLD | NEW |