Easyview Reader view

Easyview Reader view

Read articles without distractions - use reader view. Make your reading process exceptional.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "Easyview Reader view",
  "background": {
    "persistent": true,
    "scripts": [
      "background.js"
    ]
  },
  "commands": {
    "toggle-reader-view": {
      "description": "Toggle the Reader View"
    }
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "content.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "exclude_globs": [
        "chrome://*",
        "ftp://",
        "file://"
      ]
    }
  ],
  "default_locale": "en",
  "description": "__MSG_app_desc__",
  "icons": {
    "16": "image/16.png",
    "48": "image/48.png",
    "128": "image/128.png",
    "300": "image/300.png"
  },
  "incognito": "split",
  "manifest_version": 2,
  "name": "__MSG_app_name__",
  "optional_permissions": [
    "tabs"
  ],
  "page_action": {
    "default_icon": {
      "16": "image/16.png",
      "48": "image/48.png"
    }
  },
  "content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'",
  "permissions": [
    "storage",
    "contextMenus",
    "declarativeContent",
    "chrome://favicon/",
    "<all_urls>"
  ],
  "version": "0.8.3",
  "web_accessible_resources": [
    "/icons/*"
  ]
}