Discord System-Wide PTT

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

Discord System-Wide PTTคืออะไร?

Discord System-Wide PTT เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Michael Martis และคุณลักษณะหลักของมันคือ "Push-to-talk from anywhere with the Discord web client."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Discord System-Wide PTT

ดาวน์โหลดไฟล์ส่วนขยาย Discord System-Wide PTT ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    ]
}