Universal Keyword Planner box

Universal Keyword Planner box

Expand more keyword suggestions from search bar. Supporting most common sites.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "action": {},
  "background": {
    "service_worker": "background/index.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "js": [
        "content/import-index.js"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ],
  "default_locale": "en",
  "icons": {
    "16": "assets/icons/16.png",
    "32": "assets/icons/32.png",
    "48": "assets/icons/48.png",
    "128": "assets/icons/128.png",
    "512": "assets/icons/512.png"
  },
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "permissions": [
    "storage",
    "tabs"
  ],
  "version": "0.0.5",
  "web_accessible_resources": [
    {
      "matches": [
        "https://*/*"
      ],
      "resources": [
        "assets/icons/32.png",
        "assets/loader.svg"
      ]
    },
    {
      "matches": [
        "https://*/*"
      ],
      "resources": [
        "chunks/*-*.js",
        "content/index.js"
      ]
    }
  ]
}