Shopee Data Scraper
Browser extension to scrape Shopee data locally
Shopee Data Scraperคืออะไร?
Shopee Data Scraper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย spyliner.com และคุณลักษณะหลักของมันคือ "Browser extension to scrape Shopee data locally"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Shopee Data Scraper
ดาวน์โหลดไฟล์ส่วนขยาย 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\/*" ] } ] } |