Google Keyword Getter

Google Keyword Getter

Optimise Google Ads with Google Keyword Getter! Effortlessly copy keywords from Keyword Planner.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Google Keyword Getter",
  "version": "3.0.0",
  "description": "Optimise Google Ads with Google Keyword Getter! Effortlessly copy keywords from Keyword Planner.",
  "icons": {
    "16": "images/icon-16.png",
    "32": "images/icon-32.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://ads.google.com/*"
      ],
      "css": [
        "styles/styles.css"
      ],
      "js": [
        "dist/bundle.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/icon-128.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "storage",
    "https://ads.google.com/*"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}