Nooooope

Nooooope

Remove links to websites in domains you have no interest in.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Nooooope",
  "description": "Remove links to websites in domains you have no interest in.",
  "version": "0.0.12",
  "author": "David Roberts (@davidroberts63)",
  "homepage_url": "http://nooooope.teapotcoder.com",
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "underscore-min.js",
        "main.js"
      ],
      "run_at": "document_end"
    }
  ],
  "options_page": "options.html",
  "permissions": [
    "tabs",
    "storage"
  ]
}