VoiceCommands

VoiceCommands

Video player for YouTube which listens. For any feedback, write to [email protected] thanks to Youtube.com !!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "VoiceCommands",
  "version": "0.2",
  "description": "Video player for YouTube which listens. For any feedback, write to [email protected] thanks to Youtube.com !!",
  "manifest_version": 3,
  "permissions": [
    "contextMenus"
  ],
  "icons": {
    "16": "mm.png",
    "48": "mm.png",
    "128": "mm.png"
  },
  "background": {
    "service_worker": "contextMenu.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "run_at": "document_idle",
      "js": [
        "yt/cash.min.js",
        "yt/helpers.js",
        "yt/main.js"
      ],
      "css": [
        "yt/main.css"
      ]
    }
  ]
}