Amazon Review Scraper
This extension will help scrape reviews of amazon products.
Amazon Review Scraperคืออะไร?
Amazon Review Scraper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Usman Yousaf Ali และคุณลักษณะหลักของมันคือ "This extension will help scrape reviews of amazon products."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Amazon Review Scraper
ดาวน์โหลดไฟล์ส่วนขยาย Amazon Review Scraper ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension will scrape the Amazon product reviews and save it into a csv format.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Amazon Review Scraper |
ID | anhalgipklgipnccbleknhbekjgojjgo |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/amazon-review-scraper/anhalgipklgipnccbleknhbekjgojjgo |
คำอธิบาย | This extension will help scrape reviews of amazon products. |
ขนาดไฟล์ | 24.62 KB |
จำนวนการติดตั้ง | 36 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2021-08-17 |
วันที่เผยแพร่ | 2021-08-16 |
คะแนน | 1.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | Usman Yousaf Ali |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Amazon Review Scraper", "version": "1.0", "description": "This extension will help scrape reviews of amazon products.", "manifest_version": 2, "browser_action": { "default_popup": "popup\/index.html", "default_icon": { "16": "icons\/16x16.png", "32": "icons\/32x32.png", "48": "icons\/48x48.png", "128": "icons\/128x128.png" } }, "content_scripts": [ { "matches": [ "https:\/\/www.amazon.com\/product-reviews\/*" ], "css": [ "scripts\/content\/css\/webContent.css" ], "js": [ "scripts\/content\/js\/webContent.js" ] } ], "icons": { "16": "icons\/16x16.png", "32": "icons\/32x32.png", "48": "icons\/48x48.png", "128": "icons\/128x128.png" }, "permissions": [ "storage" ] } |