Harmony

Adds useful features to the Discord interface

Qu'est-ce que Harmony ?

Harmony est une extension Chrome développée par thisRaptori, et sa fonction principale est "Adds useful features to the Discord interface".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Harmony

Téléchargez les fichiers d'extension Harmony au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Harmony Harmony
ID jaaoemgmljmlgmpailnhdikgbpffhkkd
URL Officiel https://chromewebstore.google.com/detail/harmony/jaaoemgmljmlgmpailnhdikgbpffhkkd
Description Adds useful features to the Discord interface
Taille du Fichier 24.85 KB
Nombre d'Installations 186
Version Actuelle 1.3.4
Dernière Mise à Jour 2023-11-23
Date de Publication 2020-05-05
Évaluation 3.40/5 Total 10 Évaluations
Développeur thisRaptori
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/jtmcgrath/harmony
URL de la Page d'Aide https://github.com/jtmcgrath/harmony/issues
Langues Prises en Charge 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"
    ]
}