aboutsummaryrefslogtreecommitdiff
path: root/manifest.json
diff options
context:
space:
mode:
authorMark Powers <mark@marks.kitchen>2022-12-29 14:03:57 -0600
committerMark Powers <mark@marks.kitchen>2022-12-29 14:03:57 -0600
commitb5c10718ddeaa8fcac368515ca150705b1a2c5ab (patch)
tree473c6b8197774ed3a29df73821c404381535ccbc /manifest.json
parentff9f53e5673d742d155881a2a29f31ba312dce9c (diff)
Refactor scripts, add table preview
Diffstat (limited to 'manifest.json')
-rw-r--r--manifest.json18
1 files changed, 9 insertions, 9 deletions
diff --git a/manifest.json b/manifest.json
index 0fa1dea..a98c9d8 100644
--- a/manifest.json
+++ b/manifest.json
@@ -2,7 +2,7 @@
"description": "Finds feeds or generates RSS-Bridge URLs for the current page. Optional integration with tt-rss.",
"manifest_version": 2,
"name": "RSS-Bridge helper",
- "version": "1.2",
+ "version": "1.3",
"content_scripts": [
{
"matches": [
@@ -10,17 +10,17 @@
"https://*/*"
],
"js": [
- "bridges/youtube.js",
- "bridges/twitter.js",
- "bridges/instagram.js",
- "cs.js"
+ "content_scripts/bridges/youtube.js",
+ "content_scripts/bridges/twitter.js",
+ "content_scripts/bridges/instagram.js",
+ "content_scripts/cs.js"
]
}
],
"browser_action": {
- "default_icon": "icon_default.png",
+ "default_icon": "res/icon_default.png",
"default_title": "See feeds for this page",
- "default_popup": "main.html"
+ "default_popup": "popup/main.html"
},
"permissions": [
"http://*/*",
@@ -29,7 +29,7 @@
"tabs"
],
"options_ui": {
- "page": "options.html"
+ "page": "options/index.html"
},
"browser_specific_settings": {
"gecko": {
@@ -38,6 +38,6 @@
}
},
"icons": {
- "128": "icon_128.png"
+ "128": "res/icon_128.png"
}
}