Read The Web

Read The Web

Text-to-speech for Web Content

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_extension_name__",
  "description": "__MSG_extension_description__",
  "version": "3.3.4",
  "default_locale": "en",
  "icons": {
    "128": "images/icon.png"
  },
  "commands": {
    "togglePlay": {
      "suggested_key": {
        "default": "Alt+Shift+P",
        "chromeos": "Alt+P"
      },
      "description": "Start or stop reading"
    },
    "rewind": {
      "suggested_key": {
        "default": "Alt+Shift+Comma",
        "chromeos": "Alt+Comma"
      },
      "description": "Move backwards one unit"
    },
    "forward": {
      "suggested_key": {
        "default": "Alt+Shift+Period",
        "chromeos": "Alt+Period"
      },
      "description": "Move forwards one unit"
    },
    "toggleCursor": {
      "suggested_key": {
        "default": "Alt+Shift+L",
        "chromeos": "Alt+L"
      },
      "description": "Enable Highlights Mode"
    }
  },
  "browser_action": {},
  "permissions": [
    "activeTab",
    "tabs",
    "storage",
    "<all_urls>",
    "nativeMessaging",
    "http://*/*",
    "https://*/*",
    "identity"
  ],
  "background": {
    "scripts": [
      "js/background.min.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "js/content-script.min.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "exclude_matches": [
        "*://*.fireflybykurzweil.com/*",
        "*://*.kurzweil3000.com/*",
        "*://*/_/chrome/newtab*",
        "*://accounts.google.com/o/oauth2/*",
        "*://accounts.google.com/signin/*"
      ],
      "match_about_blank": false
    },
    {
      "all_frames": false,
      "js": [
        "js/docs-inject-proxy-script.min.js"
      ],
      "matches": [
        "*://docs.google.com/document/*"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "css/*.css",
    "images/*.png",
    "images/*.svg",
    "images/*.cur",
    "html/iframe.html",
    "html/iframe_pdf.html",
    "html/iframe_google_doc.html",
    "html/highlight-iframe.html",
    "js/docs-proxy-script.min.js"
  ],
  "externally_connectable": {
    "matches": [
      "*://local.kurzweil3000.com:*/*",
      "https://dev.kurzweil3000.com:*/*",
      "https://pre.kurzweil3000.com:*/*",
      "https://www.kurzweil3000.com:*/*",
      "https://post.kurzweil3000.com:*/*",
      "*://local.accounts.kurzweil3000.com:*/*",
      "https://dev.accounts.kurzweil3000.com:*/*",
      "https://pre.accounts.kurzweil3000.com:*/*",
      "https://accounts.kurzweil3000.com:*/*",
      "https://post.accounts.kurzweil3000.com:*/*"
    ]
  },
  "content_security_policy": "script-src 'self'; object-src 'self';",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}