Examine source code of Universal Keyword Planner box

Inspect and view changes in Universal Keyword Planner box source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
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"
      ]
    }
  ]
}