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 |
Eメール | [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" ] } |