TabSpeech

TabSpeech

Read the text on the displayed tab

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "default_locale": "en",
  "name": "TabSpeech",
  "description": "__MSG_appDescription__",
  "version": "2.0.1",
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "icon/TabSpeechIcon16.png",
    "48": "icon/TabSpeechIcon48.png",
    "128": "icon/TabSpeechIcon128.png"
  },
  "action": {
    "default_title": "__MSG_PageActionDefaultTitle__",
    "default_popup": "popup.html",
    "default_icon": "icon/TabSpeechIcon19.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end",
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "permissions": [
    "activeTab",
    "contextMenus",
    "storage",
    "tts",
    "tabs",
    "offscreen"
  ],
  "commands": {
    "start-speech": {
      "description": "__MSG_KeyboardShortcutNameStartSpeech__"
    },
    "stop-speech": {
      "description": "__MSG_KeyboardShortcutNameStopSpeech__"
    },
    "pause-speech": {
      "description": "__MSG_KeyboardShortcutNamePauseSpeech__"
    },
    "resume-speech": {
      "description": "__MSG_KeyboardShortcutNameResumeSpeech__"
    }
  },
  "manifest_version": 3
}