{ "name": "FediFollow", "version": "0.8.0", "description": "Simplifies interactions on other Mastodon instances than your own. Visit https://github.com/lartsch/FediFollow-Chrome for more.", "manifest_version": 3, "content_scripts": [ { "matches": ["*://*/*"], "js": ["src/lib/jquery-3.6.1.min.js","src/inject.js"], "css": ["src/nodeinserted.css"], "run_at": "document_start" } ], "background": { "service_worker": "src/background.js" }, "permissions": [ "storage", "alarms" ], "host_permissions": [ "https://*/*", "http://*/*" ], "options_ui": { "page": "src/popup.html" }, "action": { "default_popup": "src/popup.html", "default_icon": "src/icon/48.png", "default_title": "FediFollow settings" }, "icons": { "48": "src/icon/48.png" } }