Data is synced from the Chrome Web Store. View the official store page for the most current information.
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "deto_x", "description": "Filter out tweets you don't want to see using a custom prompt.", "version": "0.1", "action": { "default_popup": "index.html", "default_icon": { "16": "fish_16.png", "48": "fish_48.png", "128": "fish_128.png" } }, "permissions": [ "storage" ], "background": { "service_worker": "background.js" }, "host_permissions": [ "https:\/\/x.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/x.com\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ] }