SEO Minion

SEO Minion

SEO Minion helps you in your daily SEO tasks such as On-Page SEO analysis, Broken Link Checking, SERP Preview and more

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "version": "3.10",
  "default_locale": "en",
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "action": {
    "default_icon": "/img/icon128.png"
  },
  "background": {
    "service_worker": "sw_background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "/js/cs-meta.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "*://*/*"
      ],
      "include_globs": [
        "*://www.google.*/*"
      ],
      "js": [
        "/lib/jquery-3.6.0.min.js",
        "/js/Prefix.js",
        "/js/prefix-init.js",
        "/js/CSV.js",
        "/js/Helpers.js",
        "/js/cs-google-prerender.js",
        "/js/cs-google.js"
      ],
      "css": [
        "/css/cs-google.css"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*/*"
      ],
      "include_globs": [
        "*://www.google.*/*"
      ],
      "js": [
        "/lib/jquery-3.6.0.min.js",
        "/js/Prefix.js",
        "/js/prefix-init.js",
        "/js/cs-serp-iframe.js"
      ],
      "all_frames": true,
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://seominion.com/service/widget.php*",
        "https://seominion.com/service/serpWidget.php*",
        "https://keywordseverywhere.com/seominion/service/widget.php*",
        "https://keywordseverywhere.com/seominion/service/serpWidget.php*"
      ],
      "all_frames": true,
      "js": [
        "/js/cs-iframe-resize.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/img/*",
        "/html/*"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "permissions": [
    "webRequest",
    "declarativeNetRequest",
    "webNavigation",
    "activeTab",
    "tabs",
    "scripting",
    "storage"
  ]
}