Clear Read

Clear Read

Immersive reading mode

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Clear Read",
  "version": "0.0.10",
  "manifest_version": 2,
  "description": "Immersive reading mode",
  "browser_action": {
    "default_icon": {
      "19": "images/icon19.png",
      "38": "images/icon38.png"
    },
    "default_title": "Clear Read"
  },
  "permissions": [
    "activeTab"
  ],
  "background": {
    "scripts": [
      "init.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "css": [
        "clear-read.css"
      ],
      "js": [
        "clear-read.js"
      ]
    }
  ]
}