Harmony

Adds useful features to the Discord interface

Harmony란 무엇입니까?

Harmony은(는) thisRaptori에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds useful features to the Discord interface"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Harmony 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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"
    ]
}