SEO Doctor

SEO Doctor

SEO Doctor is a free tool for SEO Expert. It helps you automate, analyze, score and alert SEO issues on your website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "SEO Doctor",
  "version": "1.0.1",
  "manifest_version": 3,
  "description": "SEO Doctor is a free tool for SEO Expert. It helps you automate, analyze, score and alert SEO issues on your website.",
  "permissions": [
    "tabs",
    "webRequest"
  ],
  "icons": {
    "16": "icons/icon-16.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "host_permissions": [
    "*://*.google.com/"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "scripts/lib/jquery-3.6.3.min.js",
        "scripts/functions.js",
        "scripts/content-script.js",
        "scripts/ranking-script.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "background": {
    "service_worker": "service-worker.js",
    "type": "module"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}