diff options
Diffstat (limited to 'manifest.json')
-rw-r--r-- | manifest.json | 18 |
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" } } |