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": "Gaster Eliminator", "version": "1.0", "description": "Hides Twitter\/X posts containing 'gaster' with sound effects", "permissions": [ "activeTab", "storage" ], "host_permissions": [ "*:\/\/twitter.com\/*", "*:\/\/x.com\/*" ], "content_scripts": [ { "matches": [ "*:\/\/twitter.com\/*", "*:\/\/x.com\/*" ], "js": [ "content.js" ], "css": [ "styles.css" ], "run_at": "document_end" } ], "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup.html", "default_title": "Gaster Eliminator Settings" }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "web_accessible_resources": [ { "resources": [ "sounds\/*" ], "matches": [ "*:\/\/twitter.com\/*", "*:\/\/x.com\/*" ] } ] }