Ahrefs SEO Toolbar: On-Page and SERP Tools

Ahrefs SEO Toolbar: On-Page and SERP Tools

On-page SEO report, broken link checker, redirect tracer, and country changer for SERP in one add-on. If you have an active account at ahrefs.com, you will also get instant access to Page, Domain, and keyword metrics via your Ahrefs account.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "version": "3.1.48",
  "name": "Ahrefs SEO Toolbar: On-Page and SERP Tools",
  "description": "On-page SEO report, broken link checker, redirect tracer, and country changer for search results in one extension.",
  "homepage_url": "https://ahrefs.com/",
  "manifest_version": 2,
  "permissions": [
    "*://*/*",
    "tabs",
    "storage",
    "webRequest",
    "webNavigation",
    "webRequestBlocking",
    "identity"
  ],
  "background": {
    "scripts": [
      "event.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "css": [
        "content.css"
      ],
      "js": [
        "content.js"
      ],
      "exclude_matches": [
        "https://*.bing.com/*",
        "https://www.facebook.com.login.php/",
        "*://*/*.pdf",
        "*://*/*.txt",
        "*://*/*.xml"
      ],
      "run_at": "document_idle"
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "ahrefs@AhrefsPteLtd"
    }
  },
  "icons": {
    "32": "images/colored-32.png",
    "48": "images/colored-48.png",
    "64": "images/colored-64.png",
    "128": "images/colored-128.png"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "windows": "Alt+S",
        "linux": "Alt+S",
        "mac": "MacCtrl+Command+S",
        "default": "Alt+S"
      }
    },
    "toggle-page-metrics": {
      "suggested_key": {
        "windows": "Alt+A",
        "linux": "Alt+A",
        "mac": "MacCtrl+Command+A",
        "default": "Alt+A"
      },
      "description": "Toggle Metrics bar"
    }
  },
  "web_accessible_resources": [
    "images/countries/*.svg",
    "images/check.svg"
  ]
}