Free Marketplace Scraper by Komplace

Free Marketplace Scraper by Komplace

Scrape Produk dari Jakmall dan Shopee dengan Mudah, Cepat, dan Gratis!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Free Marketplace Scraper by Komplace",
  "description": "Scrape Produk dari Jakmall dan Shopee dengan Mudah, Cepat, dan Gratis!",
  "version": "1.1.3",
  "icons": {
    "16": "images/icons/icon-16.png",
    "32": "images/icons/icon-32.png",
    "48": "images/icons/icon-48.png",
    "128": "images/icons/icon-128.png"
  },
  "permissions": [
    "storage",
    "webRequest",
    "tabs"
  ],
  "host_permissions": [
    "*://komplace.id/*",
    "*://api-komerce.boostr.id/*",
    "*://staging-v2.komplace.id/*",
    "*://staging-komerce.boostr.id/*",
    "http://localhost:5001/*",
    "*://shopee.co.id/*",
    "*://www.jakmall.com/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://komplace.id/*",
        "*://staging-v2.komplace.id/*",
        "http://localhost:3000/*"
      ],
      "js": [
        "platforms/komplace/content.js"
      ]
    },
    {
      "matches": [
        "*://shopee.co.id/*"
      ],
      "js": [
        "platforms/shopee/content.js"
      ],
      "css": [
        "platforms/shopee/content.css"
      ]
    },
    {
      "matches": [
        "*://www.jakmall.com/*"
      ],
      "js": [
        "platforms/jakmall/content.js"
      ],
      "css": [
        "platforms/jakmall/content.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://api-komerce.boostr.id/*",
      "*://staging-komerce.boostr.id/*",
      "http://localhost:5001/*"
    ]
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';",
    "sandbox": "sandbox allow-scripts allow-forms allow-popups allow-modals; script-src 'self' 'unsafe-inline' 'unsafe-eval'; child-src 'self';"
  }
}