Text Reader

Text Reader

Webpages reader

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Text Reader",
  "short_name": "TReader",
  "manifest_version": 2,
  "description": "Webpages reader",
  "background": {
    "scripts": [
      "/functions/background.js"
    ]
  },
  "version": "1.20",
  "icons": {
    "16": "Images/background.png",
    "32": "Images/speaker.png",
    "64": "Images/background.png",
    "128": "Images/background.png"
  },
  "permissions": [
    "contextMenus",
    "tabs",
    "activeTab",
    "tts",
    "storage",
    "clipboardRead"
  ],
  "options_page": "/HTMLs/options.html",
  "browser_action": {
    "default_title": "Text Reader",
    "default_popup": "/HTMLs/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>",
        "https://docs.google.com/"
      ],
      "js": [
        "/functions/popup.js",
        "/functions/selection.js"
      ]
    }
  ]
}