Conductor for Chrome - SEO Extension

Conductor for Chrome - SEO Extension

Experience faster, better, smarter SEO insights in one click. The most advanced SEO extension is now free for all marketers.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Conductor for Chrome - SEO Extension",
  "version": "4.9.4",
  "description": "Experience faster, better, smarter SEO insights in one click. The most advanced SEO extension is now free for all marketers.",
  "manifest_version": 3,
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'",
    "sandbox": "sandbox allow-scripts; script-src 'self'; object-src 'self'"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "webRequest",
    "storage",
    "cookies"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "action": {
    "default_title": "Conductor SEO Extension",
    "default_icon": {
      "32": "assets/icon.png"
    }
  },
  "icons": {
    "128": "./assets/icon.png"
  },
  "content_scripts": [
    {
      "js": [
        "contentScript.js"
      ],
      "css": [],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "js": [
        "clientRedirects.js"
      ],
      "run_at": "document_end",
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "background": {
    "service_worker": "serviceWorker.js"
  },
  "options_page": "options.html",
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*.png",
        "assets/*.svg",
        "fonts/*.otf",
        "contentScript.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwLVTGm1MH4wzbQ/y4WcosuoQRQx9UyFmYJ5vMDdHgUiMieKivlhwFwbt7DtDc8Yb3yKk5RAgHwKaBzzHxHoIhR5rbWZnyZ3F7AFk1+zdeVLxokm+dQyKf4PjtEjkNvfbWNKeFOOPJ1p6ExzdEu9PlNFjUJfTSU6tn/kcEyEIBXWzI7QXM8jWxWCQ7PK3OiuaESWEDYbnLMCdC96BQmeHFIs+37JhOepnaU4qJd0ogPLi0fBbHrxRAbA+h0/UMGK+rWqcEWXf5r9qyCSK64QubbW8IRNDBRcXdwXnnsXZe4N47mtOhKM3AS4VwOPZ2AKeMyouNdvryRNEOIwoNMtSXwIDAQAB"
}