JARVIS Voice Assistant - for PC

JARVIS Voice Assistant - for PC

JARVIS Voice Assistant can help you with your daily tasks on web

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "author": "Kartikey Tiwari - [email protected]",
  "name": "JARVIS Voice Assistant - for PC",
  "version": "1.1",
  "description": "JARVIS Voice Assistant can help you with your daily tasks on web",
  "background": {
    "service_worker": "/js/background.js"
  },
  "action": {
    "default_popup": "/popup.html",
    "default_icon": {
      "16": "/icons/ico.png",
      "24": "/icons/ico.png",
      "32": "/icons/ico.png",
      "48": "/icons/ico.png"
    }
  },
  "permissions": [
    "tabs",
    "geolocation"
  ],
  "icons": {
    "16": "/icons/ico.png",
    "24": "/icons/ico.png",
    "32": "/icons/ico.png",
    "48": "/icons/ico.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "/js/content.js",
        "/js/jquery.min.js"
      ],
      "run_at": "document_start"
    }
  ]
}