Betsy

Betsy

Etsy product research tool, estimated revenue and velocity, narrow down profitable products, cross-reference competitors, & more.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Etsy product research tool, estimated revenue and velocity, narrow down profitable products, cross-reference competitors, & more.",
  "version": "1.0.6",
  "name": "Betsy",
  "background": {
    "scripts": [
      "js/background.bundle.js"
    ],
    "persistent": true
  },
  "page_action": {
    "default_icon": "img/betsy-icon-square.png"
  },
  "icons": {
    "48": "img/betsy-icon-square.png",
    "128": "img/betsy-icon-square.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://app.betsy.tools/*",
        "*://www.etsy.com/*"
      ],
      "css": [
        "css/content.bundle.css"
      ],
      "js": [
        "js/content.bundle.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    "css/*",
    "fonts/*",
    "img/*"
  ],
  "manifest_version": 2,
  "externally_connectable": {
    "matches": [
      "*://app.betsy.tools/*"
    ]
  },
  "permissions": [
    "background",
    "storage",
    "tabs",
    "*://app.betsy.tools/*",
    "*://www.etsy.com/*"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}