Etsy Search Analytics Saver

Etsy Search Analytics Saver

Keyword research tool for Etsy. Loading search queries and word statistics into CSV files (MS Excel, Google Sheets, text editors.)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "action": {},
  "manifest_version": 3,
  "name": "Etsy Search Analytics Saver",
  "short_name": "ESA Saver",
  "version": "1.8",
  "description": "Keyword research tool for Etsy. Loading search queries and word statistics into CSV files (MS Excel, Google Sheets, text editors.)",
  "permissions": [
    "activeTab",
    "scripting"
  ],
  "icons": {
    "16": "16.png",
    "32": "32.png",
    "64": "64.png",
    "128": "128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.etsy.com/your/shops/me/*"
      ],
      "js": [
        "injected.js",
        "main.js"
      ],
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "style.css"
      ],
      "matches": [
        "<all_urls>"
      ],
      "use_dynamic_url": true
    },
    {
      "resources": [
        "32.png"
      ],
      "matches": [
        "<all_urls>"
      ],
      "use_dynamic_url": true
    }
  ]
}