Amazon Reviews Scraper
This extension will help scrape reviews of Amazon products.
什麼是Amazon Reviews Scraper?
Amazon Reviews Scraper是由EverdayExtensions開發的Chrome擴展程式,該擴展的主要功能是“This extension will help scrape reviews of Amazon products.”。
擴展截圖
下載Amazon Reviews Scraper擴展crx文件
下載Amazon Reviews Scraper擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This extension will scrape reviews for any Amazon product of your choice by simply copying the URL and pressing submit. Use reviews to organize and research what people are saying about your product or what people are saying about your competitors product in one place. You also have the ability to research existing products and see how they can be improved. This tool makes it very easy for you to do that.
擴展基本資訊
名稱 | Amazon Reviews Scraper |
ID | jncfccofhdpofdddbkacpnbhlfnpbgpa |
官方網址 | https://chromewebstore.google.com/detail/amazon-reviews-scraper/jncfccofhdpofdddbkacpnbhlfnpbgpa |
簡介 | This extension will help scrape reviews of Amazon products. |
檔案大小 | 13.6 KB |
安裝次數 | 270 |
目前版本 | 1.0 |
更新時間 | 2021-02-07 |
上架時間 | 2021-02-06 |
評分 | 1.00/5 共 1 次評分 |
開發者 | EverdayExtensions |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Amazon Reviews 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" ] } |