Hide Discord Sidebar

Hide Discord Servers and Channels! Installs a button that hides/shows the Discord server list and autohides the channels list.

Hide Discord Sidebarคืออะไร?

Hide Discord Sidebar เป็นส่วนขยายของ Chrome ที่พัฒนาโดย patrickxchong และคุณลักษณะหลักของมันคือ "Hide Discord Servers and Channels! Installs a button that hides/shows the Discord server list and autohides the channels list."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Hide Discord Sidebar

ดาวน์โหลดไฟล์ส่วนขยาย Hide Discord Sidebar ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        If you find this extension helpful, I would be grateful if you can buy me a coffee at https://ko-fi.com/patrickxchong. 🙏 

Hide Discord Sidebar is a Chrome extension that minimizes the channels list into a small left sidebar when it is not in use and installs a button on the top right corner to hide/show the Discord server list. Users are able to customise the extension with the popup that shows when the extension button is clicked.

Appreciate feedback/support in the reviews! Or email me at [email protected]. Source code can be found at https://github.com/patrickxchong/hide-discord-sidebar. 

IMPORTANT: This extension is only meant to work on Discord in Chromium based browsers. Tested and working on Windows, Mac and Linux versions of Brave Browser and Chrome.

=== Version History ===
v4.4.0 Update channel list query 
v4.3.0: improve server list query
v4.2.0: fix servers query from Discord update
v4.1.0: Proxy refresh event with onUpdated instead of webNavigation API
v4.0.1: UX improvements on client startup and server list 
v4.0.0: migrate extension to Manifest V3
v3.3.1: fixes hide/show servers button covering inbox button
v3.3: fixes autohiding channels not working after discord update
v3.2: update code to use Vanilla javascript for Firefox support
v3.1: revamp architecture to support auto initialising extension when moving from Discord non-chat page (like homepage) to chat page
v3.0: add extension popup menu to customise extension behaviour
v2.17: update extension description for SEO
v2.16: fixes extra space on the right of sidebar after discord update
v2.15: fixes hide server button not working after discord update
v2.14: set !important on some CSS properties to fix sidebar not collapsing on Edge Dev
v2.13: enable/disable extension by clicking on extension button
v2.12: changes tab permission from discordapp.com to discord.com
v2.11: fixed width of left sidebar on hover
v2.10: fixes channels issue from discord update                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Hide Discord Sidebar Hide Discord Sidebar
ID kaaohmdnmbdagpnenakakpkinddjmenp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/hide-discord-sidebar/kaaohmdnmbdagpnenakakpkinddjmenp
คำอธิบาย Hide Discord Servers and Channels! Installs a button that hides/shows the Discord server list and autohides the channels list.
ขนาดไฟล์ 64.49 KB
จำนวนการติดตั้ง 14,648
เวอร์ชันปัจจุบัน 4.4.0
อัปเดตครั้งล่าสุด 2023-10-27
วันที่เผยแพร่ 2020-05-04
คะแนน 4.55/5 รวมทั้งหมด 108 คะแนน
ผู้พัฒนา patrickxchong
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/patrickxchong/hide-discord-sidebar
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hide Discord Sidebar",
    "short_name": "Hide Dis Bar",
    "version": "4.4.0",
    "description": "Hide Discord Servers and Channels! Installs a button that hides\/shows the Discord server list and autohides the channels list.",
    "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-inactive.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"
        }
    ]
}