aboutsummaryrefslogtreecommitdiff
path: root/manifest.json
blob: 77c96b7362104fdbcdd46e0b6e0981048b5430c4 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
    "description": "Find RSS/Atom feeds, and get RSS-bridge URLs for the current page. Optional integration with tt-rss or miniflux to one-click subscribe to a feed.",
    "manifest_version": 2,
    "name": "RSS feed helper",
    "version": "1.3",
    "content_scripts": [
        {
            "matches": [
                "http://*/*",
                "https://*/*"
            ],
            "js": [
                "content_scripts/cs.js",
                "content_scripts/rss_bridge.js",
                "content_scripts/scraper.js",
                "content_scripts/bridges/youtube.js",
                "content_scripts/bridges/twitter.js",
                "content_scripts/bridges/instagram.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "res/icon_default.png",
        "default_title": "See feeds for this page",
        "default_popup": "popup/main.html"
    },
    "permissions": [
        "http://*/*",
        "https://*/*",
        "storage",
        "tabs"
    ],
    "options_ui": {
        "page": "options/index.html"
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "rss-bridge-helper@marks.kitchen",
            "strict_min_version": "57.0"
        }
    },
    "icons": {
        "128": "res/icon_128.png"
    }
}