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