Refined Medium

Refined Medium

Removes the pestering "Pardon the Interruption" popup, social share widget, signup bars, and other cruft on Medium.com so you can…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Refined Medium",
  "version": "0.1.4",
  "permissions": [
    "https://medium.com/*"
  ],
  "browser_action": {
    "default_icon": "on.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end",
      "js": [
        "content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "styles.css"
  ]
}