Harmony

Adds useful features to the Discord interface

什麼是Harmony?

Harmony是由thisRaptori開發的Chrome擴展程式,該擴展的主要功能是“Adds useful features to the Discord interface”。

擴展截圖

screenshot
screenshot
screenshot

下載Harmony擴展crx文件

下載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
官方網址 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"
    ]
}