Copy Curate

Copy Curate

The First and Only Automation tool for Chairish Sellers.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Copy Curate",
  "description": "The First and Only Automation tool for Chairish Sellers.",
  "version": "1.0.0.36",
  "manifest_version": 3,
  "icons": {
    "128": "/img/logo.png"
  },
  "background": {
    "service_worker": "/js/extension_background.js"
  },
  "action": {
    "default_popup": "/pages/extension_popup/index.html",
    "default_icons": {
      "16": "/img/logo_grey.png"
    }
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "all_frames": false,
      "matches": [
        "https://*.myshopify.com/*",
        "https://*.shopify.com/*",
        "https://*.chairish.com/*"
      ],
      "js": [
        "/js/extension_content.js"
      ]
    }
  ],
  "permissions": [
    "storage",
    "contextMenus"
  ],
  "host_permissions": [],
  "web_accessible_resources": [
    {
      "resources": [
        "*"
      ],
      "matches": [
        "https://*/*"
      ],
      "extension_ids": []
    }
  ]
}