Voice DIM

Voice DIM

Control DIM with your voice.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Voice DIM",
  "description": "Control DIM with your voice.",
  "version": "1.2.7",
  "manifest_version": 3,
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.destinyitemmanager.com/*"
      ],
      "js": [
        "js/voiceDim.js"
      ],
      "css": [
        "css/voiceDim.css"
      ]
    }
  ],
  "commands": {
    "dim-listen": {
      "suggested_key": {
        "default": "Ctrl+Shift+0"
      },
      "description": "Start/Stop listening for DIM commands",
      "global": true
    }
  },
  "action": {
    "default_icon": "icons/icon_128.png",
    "default_title": "Voice DIM"
  },
  "icons": {
    "16": "icons/icon_16.png",
    "32": "icons/icon_32.png",
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "options_ui": {
    "page": "html/options.html",
    "open_in_tab": true
  },
  "host_permissions": [
    "https://www.bungie.net/*"
  ],
  "permissions": [
    "tabs",
    "storage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "icons/icon_large.png"
      ],
      "matches": [
        "https://*.destinyitemmanager.com/*"
      ]
    }
  ]
}