Amazon Review Scraper
This extension will help scrape reviews of amazon products.
什麼是Amazon Review Scraper?
Amazon Review Scraper是由Usman Yousaf Ali開發的Chrome擴展程式,該擴展的主要功能是“This extension will help scrape reviews of amazon products.”。
擴展截圖
下載Amazon Review Scraper擴展crx文件
下載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 |
官方網址 | 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" ] } |