Discord System-Wide PTT

Push-to-talk from anywhere with the Discord web client.

Discord System-Wide PTT란 무엇입니까?

Discord System-Wide PTT은(는) Michael Martis에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Push-to-talk from anywhere with the Discord web client."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Discord System-Wide PTT 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This extension allows the "push to talk" feature of the Discord web client (https://discord.com/app) to be accessed from other Chrome tabs or system-wide.

You should assign the extension a shortcut in Chrome (from chrome://extensions/shortcuts). If you would like to use PTT outside of Chrome (and you are not using Chrome OS), select the "Global" option.

You must also assign a PTT shortcut in the Discord web client voice settings page. The particular PTT shortcut assigned does not matter.

From that point on, the extension icon will display the "ON" badge when you are connected to a voice channel in PTT mode with a Discord web client loaded in some tab. Hold the extension shortcut to enable PTT when the tab isn't focussed.                    

확장 프로그램 기본 정보

이름 Discord System-Wide PTT Discord System-Wide PTT
ID jlmpdldjipfblopcdkcfccmnmnmiajnb
공식 URL https://chromewebstore.google.com/detail/discord-system-wide-ptt/jlmpdldjipfblopcdkcfccmnmnmiajnb
설명 Push-to-talk from anywhere with the Discord web client.
파일 크기 16.59 KB
설치 횟수 499
현재 버전 0.2
최근 업데이트 2021-09-15
출시 날짜 2020-08-12
평점 4.50/5 총 6 개의 평점
개발자 Michael Martis
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/mjmartis/discord_web_sys_ptt
도움말 페이지 URL https://github.com/mjmartis/discord_web_sys_ptt
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Discord System-Wide PTT",
    "version": "0.2",
    "description": "Push-to-talk from anywhere with the Discord web client.",
    "manifest_version": 2,
    "icons": {
        "16": "brw_ptt_16.png",
        "32": "brw_ptt_32.png",
        "48": "brw_ptt_48.png",
        "128": "brw_ptt_128.png"
    },
    "browser_action": {
        "default_title": "Discord System-Wide PTT",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "brw_ptt_16.png",
            "32": "brw_ptt_32.png",
            "48": "brw_ptt_48.png",
            "128": "brw_ptt_128.png"
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/discordapp.com\/*",
                "https:\/\/discord.com\/*"
            ],
            "run_at": "document_start",
            "js": [
                "content.js"
            ]
        }
    ],
    "commands": {
        "ptt": {
            "suggested_key": {
                "default": "Ctrl+Space"
            },
            "description": "Toggle PTT in the Discord web client"
        }
    },
    "permissions": [
        "storage"
    ]
}