Amazon Review Scraper
Scrape Amazon reviews, ratings with this extension.
Amazon Review Scraperคืออะไร?
Amazon Review Scraper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย sarathisahoo และคุณลักษณะหลักของมันคือ "Scrape Amazon reviews, ratings with this extension."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Amazon Review Scraper
ดาวน์โหลดไฟล์ส่วนขยาย Amazon Review Scraper ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
With this extension you can scrape reviews and ratings of any amazon product within few seconds. Go to Amazon website, Go to any product page. Then right click on page and click "Scrape Reviews from this product" option. It will extract all reviews and ratings of the product and save it as a CSV excel file.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Amazon Review Scraper |
ID | kpmpdlljfabhiffaoamleakiblkbmmle |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/amazon-review-scraper/kpmpdlljfabhiffaoamleakiblkbmmle |
คำอธิบาย | Scrape Amazon reviews, ratings with this extension. |
ขนาดไฟล์ | 138 KB |
จำนวนการติดตั้ง | 333 |
เวอร์ชันปัจจุบัน | 1.1.4 |
อัปเดตครั้งล่าสุด | 2020-09-06 |
วันที่เผยแพร่ | 2019-07-25 |
คะแนน | 3.25/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | sarathisahoo |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
URL หน้านโยบายความเป็นส่วนตัว | https://www.privacypolicies.com/live/6a5bf36b-a38f-4aa4-b7e6-dbc18ab164ff |
ภาษาที่รองรับ | en |
manifest.json | |
{ "background": { "persistent": true, "scripts": [ "js\/csv.js", "js\/async.min.js", "src\/bg\/background.js" ] }, "content_scripts": [ { "js": [ "js\/jquery\/jquery.min.js", "js\/async.min.js", "js\/jquery.query-object.js", "src\/inject\/inject.js" ], "matches": [ "*:\/\/*.amazon.com\/*", "*:\/\/*.amazon.co.uk\/*", "*:\/\/*.amazon.com.au\/*", "*:\/\/*.amazon.ca\/*", "*:\/\/*.amazon.in\/*", "*:\/\/*.amazon.de\/*", "*:\/\/*.amazon.fr\/*", "*:\/\/*.amazon.it\/*", "*:\/\/*.amazon.es\/*", "file:\/\/\/*" ] } ], "browser_action": { "default_icon": "icons\/icon.png" }, "default_locale": "en", "description": "Scrape Amazon reviews, ratings with this extension.", "icons": { "128": "icons\/icon.png" }, "manifest_version": 2, "name": "Amazon Review Scraper", "permissions": [ "downloads", "contextMenus", "*:\/\/*.amazon.com\/*", "*:\/\/*.amazon.ca\/*", "*:\/\/*.amazon.in\/*", "*:\/\/*.amazon.co.uk\/*", "*:\/\/*.amazon.com.au\/*", "*:\/\/*.amazon.de\/*", "*:\/\/*.amazon.fr\/*", "*:\/\/*.amazon.it\/*", "*:\/\/*.amazon.es\/*" ], "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "1.1.4" } |