Discord Enhancer

This extension will allow you to hide server/channel/member list on Discord

Discord Enhancerคืออะไร?

Discord Enhancer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย dr_ph4nt0m และคุณลักษณะหลักของมันคือ "This extension will allow you to hide server/channel/member list on Discord"

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        If you like to keep discord open while working on other stuff, this extension will allow you to hide the server list, channel list and member list for the discord.com website. This will allow to keep the window as small as possible without loosing the main message part of the website.                    

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

ชื่อ Discord Enhancer Discord Enhancer
ID pcmklkffcneafillgbbpphkkofelpedo
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/discord-enhancer/pcmklkffcneafillgbbpphkkofelpedo
คำอธิบาย This extension will allow you to hide server/channel/member list on Discord
ขนาดไฟล์ 61.16 KB
จำนวนการติดตั้ง 725
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2020-10-07
วันที่เผยแพร่ 2020-10-07
คะแนน 1.67/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา dr_ph4nt0m
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Discord Enhancer",
    "description": "This extension will allow you to hide server\/channel\/member list on Discord",
    "version": "1.0",
    "browser_action": {
        "default_title": "Discord Enhancer",
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "css": [
                "styles.css"
            ],
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/discord.com\/*"
            ]
        }
    ]
}