KeywordAssist

KeywordAssist

KeywordAssist extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "KeywordAssist",
  "description": "KeywordAssist extension",
  "version": "0.9",
  "manifest_version": 2,
  "icons": {
    "128": "icon_128.png"
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://search.google.com/*"
      ],
      "js": [
        "google_search_console.js"
      ],
      "css": [
        "style.css"
      ]
    },
    {
      "matches": [
        "*://ahrefs.com/*"
      ],
      "js": [
        "ahrefs.js"
      ],
      "css": [
        "style.css"
      ]
    },
    {
      "matches": [
        "*://app.neilpatel.com/*"
      ],
      "js": [
        "ubersuggest.js"
      ],
      "css": [
        "style.css"
      ]
    }
  ]
}