Sleek Read

Sleek Read

A better, smarter and more readable web.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Sleek Read",
  "description": "A better, smarter and more readable web.",
  "version": "1.3",
  "page_action": {
    "default_icon": "icon-128.png",
    "default_title": "Toggle sleek mode."
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "sleek.css"
      ],
      "js": [
        "js/jquery.min.js",
        "js/sleek.js"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "128": "icon-128.png"
  },
  "web_accessible_resources": [
    "images/*.png"
  ]
}