diff options
Diffstat (limited to 'manifest.json')
-rw-r--r-- | manifest.json | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/manifest.json b/manifest.json index e19b26a..7ed3af5 100644 --- a/manifest.json +++ b/manifest.json @@ -1,8 +1,8 @@ { - "description": "Subscribe to rss feeds with support for rss bridge", + "description": "Finds feeds or generates RSS-Bridge URLs for the current page. Optional integration with tt-rss.", "manifest_version": 2, - "name": "tt-rss_and_rss-bridge", - "version": "1.2", + "name": "RSS-Bridge helper", + "version": "1.0", "content_scripts": [ { "matches": [ @@ -10,13 +10,16 @@ "https://*/*" ], "js": [ + "youtube.js", + "twitter.js", + "instagram.js", "cs.js" ] } ], "browser_action": { "default_icon": "icon_default.png", - "default_title": "manage rss for this page", + "default_title": "See feeds for this page", "default_popup": "main.html" }, "permissions": [ @@ -30,8 +33,11 @@ }, "browser_specific_settings": { "gecko": { - "id": "ttrss_rb@marks.kitchen", - "strict_min_version": "42.0" + "id": "rss-bridge-helper@marks.kitchen", + "strict_min_version": "57.0" } + }, + "icons": { + "128": "icon_128.png" } -}
\ No newline at end of file +} |