Shopee Data Scraper
Browser extension to scrape Shopee data locally
什么是Shopee Data Scraper?
Shopee Data Scraper是由spyliner.com开发的Chrome扩展程序,该扩展的主要功能是“Browser extension to scrape Shopee data locally”。
扩展截图
下载Shopee Data Scraper扩展crx文件
下载Shopee Data Scraper扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Shopee Scraper is a powerful and user-friendly tool designed to enhance your online shopping experience on the popular e-commerce platform, Shopee. This extension enables users to effortlessly extract and organize product information, including prices, descriptions, ratings, and more, making it easy to compare products and find the best deals. Features: - Scrape multiple pages via url - Extract data from search page and product page - Data output in CSV format Currently supported regions: ID, MY, SG, TH, VN, PH, TW
扩展基本信息
名称 | Shopee Data Scraper |
ID | mdgjgbobponpehejfodjaicfcdkpaedf |
官方URL | https://chromewebstore.google.com/detail/shopee-data-scraper/mdgjgbobponpehejfodjaicfcdkpaedf |
简介 | Browser extension to scrape Shopee data locally |
文件大小 | 54.47 KB |
安装次数 | 113 |
当前版本 | 1.5.0b |
更新时间 | 2023-11-26 |
上架时间 | 2023-10-28 |
评分 | 5.00/5 共3次评分 |
开发者 | spyliner.com |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://www.spyliner.com/ |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Shopee Data Scraper", "description": "Browser extension to scrape Shopee data locally", "version": "1.5.0", "version_name": "1.5.0b", "action": { "default_popup": "dist\/popup\/popup.html" }, "icons": { "16": "assets\/icons\/web-crawler.png", "32": "assets\/icons\/web-crawler.png", "48": "assets\/icons\/web-crawler.png", "128": "assets\/icons\/web-crawler.png" }, "background": { "service_worker": "dist\/background\/background.js", "type": "module" }, "permissions": [ "storage" ], "content_scripts": [ { "js": [ "dist\/main.js" ], "matches": [ "https:\/\/shopee.co.id\/*", "https:\/\/shopee.my\/*", "https:\/\/shopee.sg\/*", "https:\/\/shopee.co.th\/*", "https:\/\/shopee.vn\/*", "https:\/\/shopee.ph\/*", "https:\/\/shopee.tw\/*", "http:\/\/shopee.co.id\/*", "http:\/\/shopee.my\/*", "http:\/\/shopee.sg\/*", "http:\/\/shopee.co.th\/*", "http:\/\/shopee.vn\/*", "http:\/\/shopee.ph\/*", "http:\/\/shopee.tw\/*" ] } ] } |