aboutsummaryrefslogtreecommitdiff
path: root/manifest.json
blob: 28df41390a49d953c8f350e8529b04a90e020e26 (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
{
  "description": "Subscribe to rss feeds with support for rss bridge",
  "manifest_version": 2,
  "name": "tt-rss_and_rss-bridge",
  "version": "1.0",

  "content_scripts": [{
        "matches": ["http://*/*", "https://*/*"],
        "js":["cs.js"]
    }],
 
  "browser_action": {
      "default_icon": "icon_default.png",
      "default_title": "manage rss for this page",
      "default_popup": "main.html"
  },
  "permissions": [
        "http://*/*",
        "https://*/*",
        "clipboardWrite",
        "activeTab",
        "storage",
        "tabs"
    ]
}