summaryrefslogtreecommitdiffstats
path: root/chrome/test/data/extensions/samples/subscribe_page_action/manifest.json
blob: 84e84e9a8c8c6f34ada9c0d0023ffbae103403b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
  "name": "RSS Subscription Extension",
  "description": "Adds one-click subscription to your toolbar",
  "version": "1.4",
  "permissions": [
    "tabs",
    "http://*/*"
  ],
  "background_page": "background.html",
  "content_scripts": [
    {
      "matches": ["http://*/*", "file://*.*"],
      "js": ["feed_finder.js"]
    }
  ],
  "icons": { "128": "feed-icon-128x128.png" },
  "page_actions": [
    {
      "id": "RssPageAction",
      "name": "Subscribe to this feed",
      "icons": [
         "feed-icon-16x16.png"
      ]
    }
  ]
}