Harmony
Adds useful features to the Discord interface
Harmony là gì?
Harmony là một tiện ích mở rộng Chrome được phát triển bởi thisRaptori, và tính năng chính của nó là "Adds useful features to the Discord interface".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Harmony
Tải xuống các tệp mở rộng Harmony dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Harmony |
ID | jaaoemgmljmlgmpailnhdikgbpffhkkd |
URL Chính Thức | https://chromewebstore.google.com/detail/harmony/jaaoemgmljmlgmpailnhdikgbpffhkkd |
Mô tả | Adds useful features to the Discord interface |
Kích Thước Tệp | 24.85 KB |
Số Lần Cài Đặt | 186 |
Phiên Bản Hiện Tại | 1.3.4 |
Cập Nhật Lần Cuối | 2023-11-23 |
Ngày Phát Hành | 2020-05-05 |
Đánh Giá | 3.40/5 Tổng số 10 Đánh Giá |
Nhà Phát Triển | thisRaptori |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/jtmcgrath/harmony |
URL Trang Trợ Giúp | https://github.com/jtmcgrath/harmony/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |