Harmony

Adds useful features to the Discord interface

Harmonyคืออะไร?

Harmony เป็นส่วนขยายของ Chrome ที่พัฒนาโดย thisRaptori และคุณลักษณะหลักของมันคือ "Adds useful features to the Discord interface"

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

screenshot
screenshot
screenshot

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

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

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

                        Discord is great, but has some bugs and annoyances; their team is tiny for what they've accomplished, so instead of complaining let's create a Chrome plugin which fills in the gaps until they can fix the issues for real!

No guarantees that the fixes will always work - when Discord make updates, this extension may break.                    

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

ชื่อ Harmony Harmony
ID jaaoemgmljmlgmpailnhdikgbpffhkkd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/harmony/jaaoemgmljmlgmpailnhdikgbpffhkkd
คำอธิบาย Adds useful features to the Discord interface
ขนาดไฟล์ 24.85 KB
จำนวนการติดตั้ง 186
เวอร์ชันปัจจุบัน 1.3.4
อัปเดตครั้งล่าสุด 2023-11-23
วันที่เผยแพร่ 2020-05-05
คะแนน 3.40/5 รวมทั้งหมด 10 คะแนน
ผู้พัฒนา thisRaptori
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/jtmcgrath/harmony
URL หน้าช่วยเหลือ https://github.com/jtmcgrath/harmony/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Harmony",
    "version": "1.3.4",
    "description": "Adds useful features to the Discord interface",
    "author": "Joe McGrath",
    "manifest_version": 3,
    "icons": {
        "16": "icon\/icon16.png",
        "32": "icon\/icon32.png",
        "48": "icon\/icon48.png",
        "64": "icon\/icon64.png",
        "128": "icon\/icon128.png"
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/discord.com\/channels\/*"
            ],
            "css": [
                "features\/small\/leftSidebar.css",
                "features\/small\/toggleToolbar.css",
                "features\/hideGiftIcon.css",
                "features\/fontSize.css"
            ],
            "js": [
                "features\/small\/autoHideChannels.js",
                "features\/small\/autoHideMembers.js",
                "features\/small\/smallServerIcons.js",
                "features\/small\/toggleToolbar.js",
                "features\/hideGiftIcon.js",
                "features\/loadOptions.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": false
    },
    "permissions": [
        "storage"
    ]
}