Voice Darts

Voice Darts

Revamp your darts game with Nakka's Google Extension! Record scores with your voice, not keyboard.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Voice Darts",
  "description": "Revamp your darts game with Nakka's Google Extension! Record scores with your voice, not keyboard.",
  "version": "1.4",
  "permissions": [
    "storage",
    "activeTab",
    "scripting"
  ],
  "action": {
    "default_icon": "dart.png",
    "default_title": "...",
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "popup.css",
        "popup.js",
        "lang.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://n01darts.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}