Etsy Keyword Tool

Etsy Keyword Tool

Rank better on Etsy with good keyword research!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "short_name": "Etsy Keyword Tool",
  "version": "1.0.1",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "icons": {
    "16": "public/icons/icon-16.png",
    "48": "public/icons/icon-48.png",
    "96": "public/icons/icon-96.png",
    "128": "public/icons/icon-128.png"
  },
  "content_security_policy": {
    "extensions_pages": "script-src 'self'; object-src 'self'"
  },
  "permissions": [
    "storage",
    "downloads"
  ],
  "host_permissions": [],
  "background": {
    "service_worker": "background.js"
  },
  "action": {},
  "content_scripts": [
    {
      "matches": [
        "http://dev-extension/*",
        "https://www.etsy.com/*"
      ],
      "js": [
        "front-vendors.js",
        "contentApp.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/public/*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}