Discord System-Wide PTT

Discord System-Wide PTT

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

Merlin
Additional files are visible only to premium users

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