Harmony
Adds useful features to the Discord interface
ما هو Harmony؟
Harmony هو إضافة Chrome تم تطويرها بواسطة thisRaptori، والميزة الرئيسية لها هي "Adds useful features to the Discord interface".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Harmony
قم بتنزيل ملفات الامتداد Harmony بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
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 |
عنوان صفحة المساعدة | 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" ] } |