EasyRead - Simple website reader

EasyRead - Simple website reader

Simplify website page, remove sidebars and not useful information. Add notes to the text dirrectly!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "scripts": [
      "/ga.js",
      "/bundle/common.js",
      "/bundle/background.js"
    ]
  },
  "content_scripts": [
    {
      "exclude_matches": [
        "http://localhost/*"
      ],
      "js": [
        "/bundle/common.js",
        "/bundle/vendors.js",
        "/bundle/contentscripts.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*/*.txt",
        "file:///*/*.md"
      ],
      "run_at": "document_end"
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://ssl.google-analytics.com; object-src 'self'",
  "default_locale": "en",
  "description": "Simplify website page, remove sidebars and not useful information. Add notes to the text dirrectly!",
  "homepage_url": "https://www.extensionsforweb.com/",
  "icons": {
    "16": "assets/images/icon16.png",
    "48": "assets/images/icon48.png",
    "128": "assets/images/icon128.png"
  },
  "manifest_version": 2,
  "name": "EasyRead - Simple website reader",
  "offline_enabled": true,
  "optional_permissions": [
    "cookies",
    "downloads"
  ],
  "options_page": "options/options.html",
  "page_action": {
    "default_icon": {
      "16": "assets/images/icon16.png"
    }
  },
  "permissions": [
    "contextMenus",
    "tabs",
    "storage",
    "unlimitedStorage",
    "tts",
    "<all_urls>"
  ],
  "short_name": "EasyRead",
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "2.0.0",
  "web_accessible_resources": [
    "/assets/images/*",
    "website_list.json",
    "options/corb.html"
  ]
}