Repeatsy

Repeatsy

Repeatsy is a chrome extension allowing Etsy sellers to automatically collect customers data

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Repeatsy",
  "version": "1.1.2",
  "background": {
    "service_worker": "background.js"
  },
  "description": "Repeatsy is a chrome extension allowing Etsy sellers to automatically collect customers data",
  "content_scripts": [
    {
      "matches": [
        "*://www.etsy.com/*",
        "https://extensionpay.com/*"
      ],
      "js": [
        "jquery-3.6.0.min.js",
        "ExtPay.js",
        "content_script.js"
      ],
      "run_at": "document_start"
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/images/icons/repeatsy_icon-16_x_16.png",
      "32": "/images/icons/repeatsy_icon-32_x_32.png",
      "48": "/images/icons/repeatsy_icon-48_x_48.png",
      "128": "/images/icons/repeatsy_icon-128_x_128.png"
    }
  },
  "icons": {
    "16": "/images/icons/repeatsy_icon-16_x_16.png",
    "32": "/images/icons/repeatsy_icon-32_x_32.png",
    "48": "/images/icons/repeatsy_icon-48_x_48.png",
    "128": "/images/icons/repeatsy_icon-128_x_128.png"
  },
  "permissions": [
    "storage",
    "unlimitedStorage"
  ]
}