Amazon Review Scraper
Scrape Amazon reviews, ratings with this extension.
什麼是Amazon Review Scraper?
Amazon Review Scraper是由sarathisahoo開發的Chrome擴展程式,該擴展的主要功能是“Scrape Amazon reviews, ratings with this extension.”。
擴展截圖
下載Amazon Review Scraper擴展crx文件
下載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 |
官方網址 | 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" } |