讀 Extension

讀 Extension

Speak the web page selected contents text

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "default_locale": "en",
  "manifest_version": 3,
  "name": "讀 Extension",
  "version": "2.0.16",
  "description": "__MSG_product_desc__",
  "icons": {
    "16": "images/TTS16.png",
    "48": "images/TTS48.png",
    "128": "images/TTS128.png"
  },
  "action": {
    "default_icon": "images/TTS16.png",
    "default_popup": "popup.html"
  },
  "options_page": "options.html",
  "background": {
    "service_worker": "scripts/event_page.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*",
        "file:///*/*"
      ],
      "all_frames": true,
      "run_at": "document_start",
      "js": [
        "scripts/content_scripts.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "tts",
    "contextMenus",
    "storage",
    "background",
    "downloads",
    "tabs",
    "unlimitedStorage"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "scripts/tesseract/ocr-progress/progress.html"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "use_dynamic_url": true
    }
  ]
}