Browser Control Through Voice Commands

Browser Control Through Voice Commands

This extension ease the work of the user . The user just need to add the extension in their chrome and give the commands what they…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Browser Control Through Voice Commands",
  "version": "0.1",
  "icons": {
    "16": "images/mic.png",
    "128": "images/mic.png"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end",
      "js": [
        "./js/contentScript.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "storage",
    "bookmarks",
    "cookies",
    "history"
  ],
  "action": {
    "default_title": " transcript",
    "default_icon": "images/mic.png"
  },
  "content_security_policy": {
    "sandbox": "https://apis.google.com/; sandbox allow-scripts; script-src 'self' 'unsafe-eval' object-src 'self'"
  }
}