Discord System-Wide PTT

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

Discord System-Wide PTT क्या है?

Discord System-Wide PTT Michael Martis द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Push-to-talk from anywhere with the Discord web client."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Discord System-Wide PTT एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    ]
}