Show Nofollow

Show Nofollow

Find out instantly if links are nofollow or dofollow with this easy to use extension.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Show Nofollow",
  "version": "1.0.1",
  "description": "Find out instantly if links are nofollow or dofollow with this easy to use extension.",
  "manifest_version": 2,
  "permissions": [],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./js/inject.js"
      ],
      "css": [
        "./css/inject.css"
      ],
      "all_frames": true,
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    "images/**/*.png"
  ],
  "browser_action": {
    "default_icon": {
      "16": "./images/icons/icon.png",
      "48": "./images/icons/icon.png"
    }
  },
  "icons": {
    "16": "./images/icons/icon.png",
    "48": "./images/icons/icon.png",
    "128": "./images/icons/icon.png"
  }
}