diff options
Diffstat (limited to 'manifest.json')
-rw-r--r-- | manifest.json | 52 |
1 files changed, 32 insertions, 20 deletions
diff --git a/manifest.json b/manifest.json index 28df413..e19b26a 100644 --- a/manifest.json +++ b/manifest.json @@ -1,25 +1,37 @@ { - "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": [ + "description": "Subscribe to rss feeds with support for rss bridge", + "manifest_version": 2, + "name": "tt-rss_and_rss-bridge", + "version": "1.2", + "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" - ] -} + ], + "options_ui": { + "page": "options.html" + }, + "browser_specific_settings": { + "gecko": { + "id": "ttrss_rb@marks.kitchen", + "strict_min_version": "42.0" + } + } +}
\ No newline at end of file |