Edge Text-to-Speech

Edge Text-to-Speech

Text-to-Speech is a free addons. Uses text-to-speech technology to convert text to audio

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Edge Text-to-Speech",
  "description": "Text-to-Speech is a free addons. Uses text-to-speech technology to convert text to audio",
  "version": "3.8.22.1039",
  "minimum_chrome_version": "99",
  "action": {
    "default_popup": "popup.html?isPopup=1"
  },
  "icons": {
    "16": "img/icon-16.png",
    "48": "img/icon-48.png",
    "128": "img/icon.png"
  },
  "oauth2": {
    "client_id": "311515340069-gr48lfk7ufpg8ath9qkfsatq60tr6147.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.email",
      "https://www.googleapis.com/auth/userinfo.profile",
      "https://www.googleapis.com/auth/chromewebstore.readonly"
    ]
  },
  "permissions": [
    "activeTab",
    "contextMenus",
    "identity",
    "offscreen",
    "scripting",
    "storage",
    "tts",
    "ttsEngine",
    "cookies",
    "tabs"
  ],
  "optional_permissions": [
    "webRequest",
    "webNavigation"
  ],
  "host_permissions": [
    "https://translate.google.com/",
    "*://*/*"
  ],
  "optional_host_permissions": [
    "http://*/",
    "https://*/",
    "file://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "player.html",
        "sound/silence.mp3"
      ],
      "matches": [
        "<all_urls>"
      ],
      "use_dynamic_url": true
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "options_page": "options.html",
  "options_ui": {
    "page": "options.html"
  },
  "commands": {
    "play": {
      "suggested_key": {
        "default": "Alt+P"
      },
      "description": "play/pause"
    },
    "stop": {
      "suggested_key": {
        "default": "Alt+O"
      },
      "description": "stop"
    },
    "forward": {
      "suggested_key": {
        "default": "Alt+Period"
      },
      "description": "forward"
    },
    "rewind": {
      "suggested_key": {
        "default": "Alt+Comma"
      },
      "description": "rewind"
    }
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}