SEO Pro Extension

SEO Pro Extension

Are you ready to save at least 5 hours/week on daily SEO checks? If your answer is yes, then SEO Pro is exactly what you need.…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "MarketingSyrup",
  "homepage_url": "https://marketingsyrup.com/",
  "manifest_version": 3,
  "name": "SEO Pro Extension",
  "version": "2.4",
  "icons": {
    "16": "images/icons/ic_seo-pro.png",
    "48": "images/icons/icon-48.png",
    "128": "images/icons/icon-128.png"
  },
  "incognito": "split",
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": "images/icons/ic_seo-pro.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "css/inject.css"
      ],
      "js": [
        "js/inject.js"
      ],
      "run_at": "document_end"
    }
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "permissions": [
    "webRequest",
    "webNavigation"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "popup.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}