Harmony

Adds useful features to the Discord interface

Was ist Harmony?

Harmony ist eine Chrome-Erweiterung, die von thisRaptori entwickelt wurde, und ihr Hauptmerkmal ist "Adds useful features to the Discord interface".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Harmony-Erweiterungs-CRX-Datei herunterladen

Laden Sie Harmony-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Harmony Harmony
ID jaaoemgmljmlgmpailnhdikgbpffhkkd
Offizielle URL https://chromewebstore.google.com/detail/harmony/jaaoemgmljmlgmpailnhdikgbpffhkkd
Beschreibung Adds useful features to the Discord interface
Dateigröße 24.85 KB
Installationsanzahl 186
Aktuelle Version 1.3.4
Letztes Update 2023-11-23
Veröffentlichungsdatum 2020-05-05
Bewertung 3.40/5 Insgesamt 10 Bewertungen
Entwickler thisRaptori
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/jtmcgrath/harmony
Hilfeseite URL https://github.com/jtmcgrath/harmony/issues
Unterstützte Sprachen 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"
    ]
}