Edge Reader

Edge Reader

Edge Reader will instantly read any article on sites you visit. This simple to use app uses advanced techniques to discover the…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "short_name": "Edge Reader",
  "name": "Edge Reader",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "version": "0.0.0.5",
  "manifest_version": 2,
  "permissions": [
    "tabs",
    "<all_urls>"
  ],
  "browser_action": {
    "default_popup": "index.html",
    "default_icon": "icons/icon16.png"
  },
  "background": {
    "scripts": [
      "background/config.js",
      "background/TTS.js",
      "background/background.js"
    ],
    "persists": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content/inject.js"
      ]
    }
  ],
  "commands": {
    "play": {
      "suggested_key": {
        "default": "Alt+R"
      },
      "description": "play/pause"
    },
    "stop": {
      "suggested_key": {
        "default": "Alt+T"
      },
      "description": "stop"
    }
  }
}