Sprout SEO Extension 🌱

Sprout SEO Extension 🌱

Speed up your daily SEO routine, get one-click insights on any page you're on. Sprout is for marketers who take SEO seriously.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Sprout SEO Extension 🌱",
  "homepage_url": "https://usergrowth.io/resources/sprout-seo-extension/",
  "version": "3.3.3",
  "author": "Hans van Gent",
  "description": "Speed up your daily SEO routine, get one-click insights on any page you're on. Sprout is for marketers who take SEO seriously.",
  "permissions": [
    "activeTab",
    "contextMenus",
    "webRequest",
    "webNavigation",
    "scripting"
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "action": {
    "default_icon": {
      "16": "img/icon_16.png",
      "48": "img/icon_48.png",
      "128": "img/icon_128.png"
    },
    "default_popup": "pages/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "css/inject.css"
      ],
      "js": [
        "js/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "img/icon_16.png",
    "48": "img/icon_48.png",
    "128": "img/icon_128.png"
  },
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "popup.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}