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 |
官方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" ] } |