Etsy Analyzer

Etsy Analyzer

This extension can help you view information and historical data trends of Etsy stores and their products.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Etsy Analyzer",
  "version": "1.1.1",
  "description": "This extension can help you view information and historical data trends of Etsy stores and their products.",
  "author": "ixspy",
  "default_locale": "en",
  "icons": {
    "48": "img/Etsy.png",
    "128": "img/Etsy.png"
  },
  "permissions": [
    "storage",
    "cookies"
  ],
  "host_permissions": [
    "http://ali.same.com/*",
    "*://*.ixspy.com/*",
    "*://*.etsy.com/*"
  ],
  "action": {
    "default_icon": "img/Etsy.png",
    "default_popup": "html/popup.html"
  },
  "content_scripts": [
    {
      "exclude_matches": [],
      "matches": [
        "https://*.etsy.com/*",
        "https://www.etsy.com/*",
        "https://cdn.ixspy.cn/*"
      ],
      "js": [
        "js/jquery.js",
        "js/echarts.min.js",
        "js/content_script_convey.js",
        "js/content_script_dom.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "js/jquery.js",
        "js/common_func.js",
        "js/bootstrap.min.js",
        "js/echarts.min.js",
        "css/bootstrap.min.css",
        "css/plugin.css",
        "img/*.png",
        "img/*.svg",
        "fonts/glyphicons-halflings-regular.ttf",
        "fonts/glyphicons-halflings-regular.woff2",
        "fonts/glyphicons-halflings-regular.woff",
        "js/inject_web.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}