Detect Nofollow

Detect Nofollow

Highlight rel no-follow and sponsored links on web pages. Useful for SEO

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "offline_enabled": true,
  "name": "__MSG_name__",
  "version": "0.18.0",
  "description": "__MSG_description__",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "default_locale": "en",
  "options_ui": {
    "page": "options.html",
    "chrome_style": true,
    "open_in_tab": true
  },
  "icons": {
    "16": "images/icon-16.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png",
    "300": "images/icon-300.png"
  },
  "browser_action": {
    "default_title": "NoFollow",
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/icon-16.png",
      "48": "images/icon-48.png",
      "128": "images/icon-128.png",
      "300": "images/icon-300.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start",
      "js": [
        "content.js"
      ],
      "all_frames": true
    }
  ],
  "content_security_policy": "script-src 'self' https://www.google-analytics.com https://*.googleapis.com https://www.googletagmanager.com; object-src 'self'",
  "permissions": [
    "storage",
    "tabs",
    "http://*/*",
    "https://*/*"
  ]
}