Unlink

Unlink

This extension removes all the links from a page allowing you to focus on reading a single blog post at a time.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Unlink",
  "description": "This extension removes all the links from a page allowing you to focus on reading a single blog post at a time.",
  "version": "0.0.1",
  "icons": {
    "16": "unlink16.png",
    "128": "unlink128.png"
  },
  "content_scripts": [
    {
      "js": [
        "jquery.min.js",
        "script.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ]
}