Data is synced from the Chrome Web Store. View the official store page for the most current information.
This extension is no longer available on the Chrome Web Store. We noticed it was gone on Jul 03, 2025.
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Discord Sidebar Hider", "short_name": "Discord Sidebar Hider", "version": "1.0.0", "description": "Hide Discord Servers and Channels sidebar on Discord web client", "manifest_version": 3, "icons": { "128": "icons\/icon128-active.png" }, "permissions": [ "scripting", "storage" ], "host_permissions": [ "*:\/\/*.discord.com\/*" ], "background": { "service_worker": "background.js" }, "action": { "default_icon": "icons\/icon128-active.png", "default_popup": "popup\/popup.html" }, "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" }, "content_scripts": [ { "matches": [ "*:\/\/*.discord.com\/*" ], "css": [ "hide-discord-sidebar.css" ], "js": [ "hide-discord-sidebar.js" ], "run_at": "document_start" } ] }