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", "name": "Twitter snooze", "description": "Snooze users on Twitter.", "version": "0.3.0", "manifest_version": 3, "host_permissions": [ "https:\/\/twitter.com\/*", "https:\/\/x.com\/*" ], "web_accessible_resources": [ { "resources": [ "popup\/popup.js", "popup\/popup.css" ], "matches": [ "https:\/\/twitter.com\/*", "https:\/\/x.com\/*" ] } ], "background": { "service_worker": "background.js", "type": "module" }, "action": { "default_title": "Snooze users on Twitter.", "default_popup": "popup\/index.html" }, "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*", "https:\/\/x.com\/*" ], "js": [ "content-script.js" ], "css": [ "content-script.css" ] } ], "permissions": [ "storage", "webNavigation" ], "icons": { "32": "images\/icon_32.png", "48": "images\/icon_48.png", "128": "images\/icon_128.png" } }