Web Assist

Web Assist

Surf the web, dictate, and much more with just your voice

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Web Assist",
  "description": "Surf the web, dictate, and much more with just your voice",
  "version": "1.2.1",
  "web_accessible_resources": [
    {
      "matches": [
        "https://*/*"
      ],
      "resources": [
        "microphone-24-red.png",
        "microphone-28-red.png",
        "microphone-36-red.png",
        "microphone-24-green.png",
        "microphone-28-green.png",
        "microphone-36-green.png",
        "startRecording.png",
        "stopRecording.png",
        "playButton.jpg",
        "stopButton.png",
        "help.min.html",
        "notes.html",
        "uninstall.html",
        "microphone.html",
        "speechFrame.html",
        "bubble-sound-effect.wav"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "16": "icons8-audio-wave16.png",
      "48": "icons8-audio-wave48.png",
      "128": "icons8-audio-wave128.png"
    },
    "default_popup": "launch.min.html"
  },
  "icons": {
    "16": "icons8-audio-wave16.png",
    "48": "icons8-audio-wave48.png",
    "128": "icons8-audio-wave128.png"
  },
  "background": {
    "service_worker": "background.min.js"
  },
  "permissions": [
    "tabs",
    "storage",
    "bookmarks",
    "clipboardRead",
    "clipboardWrite"
  ],
  "content_scripts": [
    {
      "css": [
        "assets/web_assist/css/webassistui.min.css"
      ],
      "matches": [
        "https://*/*"
      ],
      "js": [
        "assets/web_assist/js/webassistbundled.min.js"
      ],
      "run_at": "document_end"
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}