Audio to Text for Whatsapp Web

Audio to Text for Whatsapp Web

Turn all received audios into text.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Audio to Text for Whatsapp Web",
  "version": "1.6.8",
  "description": "__MSG_description__",
  "default_locale": "en",
  "icons": {
    "16": "./icons/16.png",
    "38": "./icons/38.png",
    "64": "./icons/64.png",
    "128": "./icons/128.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_title": "Audio to Text for Whatsapp Web"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "js": [
        "injector.js"
      ],
      "matches": [
        "https://web.whatsapp.com/*"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "https://web.whatsapp.com/*"
      ],
      "resources": [
        "script.js"
      ]
    }
  ],
  "permissions": [
    "storage",
    "tabs"
  ]
}