aboutsummaryrefslogtreecommitdiff
path: root/manifest.json
diff options
context:
space:
mode:
Diffstat (limited to 'manifest.json')
-rw-r--r--manifest.json25
1 files changed, 25 insertions, 0 deletions
diff --git a/manifest.json b/manifest.json
new file mode 100644
index 0000000..28df413
--- /dev/null
+++ b/manifest.json
@@ -0,0 +1,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"
+ ]
+}