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
电子邮箱 [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"
    ]
}