aboutsummaryrefslogtreecommitdiff
path: root/manifest.json
diff options
context:
space:
mode:
authorMark Powers <markppowers0@gmail.com>2020-11-23 20:21:59 -0600
committerMark Powers <markppowers0@gmail.com>2020-11-23 20:21:59 -0600
commitc5cf1359762274a17fb139944405c02618996700 (patch)
tree69e48f19a6d187eccb8cc50740aadf534781a0de /manifest.json
parenta0dad259a6c767487be08afc666dbf2c923a6e25 (diff)
Fix youtube feeds
Diffstat (limited to 'manifest.json')
-rw-r--r--manifest.json20
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
+}