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