Harmony
Adds useful features to the Discord interface
Hvad er Harmony?
Harmony er en Chrome-udvidelse udviklet af thisRaptori, og dens hovedfunktion er "Adds useful features to the Discord interface".
Udvidelsesskærmbilleder
Download Harmony-udvidelses-CRX-fil
Download Harmony-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Harmony |
ID | jaaoemgmljmlgmpailnhdikgbpffhkkd |
Officiel URL | https://chromewebstore.google.com/detail/harmony/jaaoemgmljmlgmpailnhdikgbpffhkkd |
Beskrivelse | Adds useful features to the Discord interface |
Filstørrelse | 24.85 KB |
Antal Installationer | 186 |
Nuværende Version | 1.3.4 |
Senest Opdateret | 2023-11-23 |
Udgivelsesdato | 2020-05-05 |
Bedømmelse | 3.40/5 Samlet 10 Bedømmelser |
Udvikler | thisRaptori |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/jtmcgrath/harmony |
Hjælpeside-URL | https://github.com/jtmcgrath/harmony/issues |
Understøttede Sprog | 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" ] } |