Shop Scrapper

Shop Scrapper

Scrap data from Shopee/Lazada to clipboard for xlsx

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Shop Scrapper",
  "description": "Scrap data from Shopee/Lazada to clipboard for xlsx",
  "version": "1.1.7",
  "icons": {
    "128": "icon_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://shopee.co.th/*"
      ],
      "css": [
        "app.css",
        "shopee.css"
      ],
      "js": [
        "jquery-3.3.1.slim.min.js",
        "shopee.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://www.lazada.co.th/*"
      ],
      "css": [
        "app.css",
        "lazada.css"
      ],
      "js": [
        "jquery-3.3.1.slim.min.js",
        "lazada.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "*://alert.billbuild-studio.com/season*"
      ],
      "css": [
        "app.css",
        "billbuild.css"
      ],
      "js": [
        "jquery-3.3.1.slim.min.js",
        "billbuild.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "icon.png"
  }
}