Postlight Reader

Postlight Reader

Postlight Reader - Clear away the clutter from all of your articles. Instantly.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Postlight Reader",
  "description": "Postlight Reader - Clear away the clutter from all of your articles. Instantly.",
  "version": "10",
  "permissions": [
    "contextMenus",
    "tabs",
    "storage",
    "activeTab"
  ],
  "icons": {
    "16": "img/icon-16.png",
    "48": "img/icon-48.png",
    "128": "img/icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>",
        "*://*/*"
      ],
      "css": [
        "content.css"
      ],
      "js": [
        "content.bundle.js"
      ]
    }
  ],
  "manifest_version": 3,
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_title": "Postlight Reader"
  },
  "options_ui": {
    "page": "options.html",
    "browser_style": true
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "app.html",
        "root-url-warning.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}