Harmony

Adds useful features to the Discord interface

Τι είναι το Harmony;

Το Harmony είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον thisRaptori, και η κύρια λειτουργία του είναι "Adds useful features to the Discord interface".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Harmony

Λήψη αρχείων επέκτασης 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"
    ]
}