Readme - Text To Speech (TTS)

Readme - Text To Speech (TTS)

AI-powered text-to-speechе tool. Voice over for books and PDF files. ChatGPT summarizer for anything.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "version": "1.1.3",
  "icons": {
    "16": "icons/ext_icon_128.png",
    "32": "icons/ext_icon_128.png",
    "48": "icons/ext_icon_128.png",
    "64": "icons/ext_icon_128.png",
    "128": "icons/ext_icon_128.png"
  },
  "permissions": [
    "tts",
    "ttsEngine",
    "contextMenus",
    "unlimitedStorage",
    "storage",
    "<all_urls>",
    "webRequest"
  ],
  "browser_action": {
    "default_icon": "icons/ext_icon_128.png",
    "default_title": "__MSG_extTitle__"
  },
  "background": {
    "page": "background.html"
  },
  "content_scripts": [
    {
      "js": [
        "vendors/vendors.js",
        "content/content.js",
        "content/content-read.js"
      ],
      "css": [
        "content/content.css"
      ],
      "run_at": "document_end",
      "matches": [
        "<all_urls>"
      ],
      "all_frames": false
    },
    {
      "js": [
        "content/content-cloud.js"
      ],
      "run_at": "document_start",
      "matches": [
        "https://cloud.google.com/text-to-speech/*"
      ],
      "all_frames": false
    },
    {
      "run_at": "document_start",
      "matches": [
        "https://chat.openai.com/chat"
      ],
      "js": [
        "content/content-gpt.js"
      ],
      "css": [
        "styles/banner-gpt.css"
      ],
      "all_frames": true
    }
  ],
  "options_page": "options/options.html",
  "commands": {
    "forward": {
      "description": "Next",
      "suggested_key": {
        "default": "Alt+Down"
      }
    },
    "play": {
      "description": "Read/Pause",
      "suggested_key": {
        "default": "Alt+R"
      }
    },
    "backward": {
      "description": "Previous",
      "suggested_key": {
        "default": "Alt+Up"
      }
    },
    "speaker": {
      "description": "Speaker",
      "suggested_key": {
        "default": "Alt+S"
      }
    }
  },
  "short_name": "__MSG_extShortName__",
  "default_locale": "en",
  "manifest_version": 2,
  "web_accessible_resources": [
    "fonts/*",
    "img/*",
    "icons/*",
    "popup/popup.html"
  ]
}