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": "Block and Hide Feeds - YouTube, Instagram, Twitter (X)", "version": "0.2.8", "description": "A plugin to block and hide feeds on YouTube, Instagram, Twitter (X).", "permissions": [ "activeTab", "storage", "scripting" ], "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup.html", "default_icon": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } }, "content_scripts": [ { "matches": [ "*:\/\/*.x.com\/*", "*:\/\/*.twitter.com\/*" ], "js": [ "twitter.js", "content.js" ], "css": [ "styles.css" ] }, { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "youtube.js", "content.js" ], "css": [ "styles.css" ] }, { "matches": [ "*:\/\/www.instagram.com\/*" ], "js": [ "instagram.js", "content.js" ], "css": [ "styles.css" ] } ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "web_accessible_resources": [ { "resources": [ "icons\/twitter.svg", "icons\/youtube.svg", "icons\/instagram.svg", "icons\/arrow.svg" ], "matches": [ "<all_urls>" ] } ], "host_permissions": [ "*:\/\/*.x.com\/*", "*:\/\/*.twitter.com\/*", "*:\/\/www.youtube.com\/*", "*:\/\/www.instagram.com\/*" ] }