Readable Medium.com

Readable Medium.com

Chrome extension which hides Medium.com header, footer and removes automatic sign in modal to improves read experience

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Readable Medium.com",
  "version": "1.0.2",
  "manifest_version": 2,
  "description": "Chrome extension which hides Medium.com header, footer and removes automatic sign in modal to improves read experience",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "default_locale": "en",
  "permissions": [],
  "content_scripts": [
    {
      "matches": [
        "*://medium.com/*",
        "*://medium.freecodecamp.org/*",
        "*://hackernoon.com/*"
      ],
      "js": [
        "src/improveReadability.js"
      ],
      "css": [
        "src/improveReadability.css"
      ]
    }
  ]
}