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
公式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
Eメール [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"
    ]
}