Amazon Reviews Exporter | CSV & Images
App description
Amazon Reviews Exporter | CSV & Imagesとは何ですか?
Amazon Reviews Exporter | CSV & ImagesはMXNProによって開発されたChromeの拡張機能で、その主な機能は「App description」です。
拡張機能のスクリーンショット
Amazon Reviews Exporter | CSV & Images拡張機能のCRXファイルをダウンロード
Amazon Reviews Exporter | CSV & Images拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Export Amazon product reviews to CSV format. ▬▬▬▬ GETTING STARTED ▬▬▬▬▬ 1. Install the extension by clicking the “Add to chrome” button. 2. Open an Amazon product page. 3. Open the extension and start downloading ! ▬▬▬▬▬ FEATURES ▬▬▬▬▬ FREE version: - Download product reviews to CSV PRO version: - Unlimited review downloads - Download reviews images - Sort by most recent - Filter by keywords - Filter by stars rating - All reviews filters
拡張機能の基本情報
名前 | Amazon Reviews Exporter | CSV & Images |
ID | njlppnciolcibljfdobcefcngiampidm |
公式URL | https://chromewebstore.google.com/detail/amazon-reviews-exporter-c/njlppnciolcibljfdobcefcngiampidm |
説明 | App description |
ファイルサイズ | 119 KB |
インストール数 | 4,639 |
現在のバージョン | 2.1.2 |
最終更新日 | 2023-12-11 |
公開日 | 2020-01-09 |
評価 | 3.18/5 合計 22 レビュー |
開発者 | MXNPro |
Eメール | [email protected] |
支払い方法 | free |
プライバシーポリシーページのURL | https://mxnpro.ovh/privacy |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_appName__", "short_name": "__MSG_appShortName__", "version": "2.1.2", "description": "__MSG_appDesc__", "default_locale": "en", "icons": { "16": "public\/icons\/icon-16.png", "48": "public\/icons\/icon-48.png", "96": "public\/icons\/icon-96.png", "128": "public\/icons\/icon-128.png" }, "content_security_policy": { "extensions_pages": "script-src 'self'; object-src 'self'" }, "permissions": [ "downloads", "storage", "activeTab" ], "host_permissions": [], "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/amazon.eg\/*", "*:\/\/amazon.com.br\/*", "*:\/\/amazon.ca\/*", "*:\/\/amazon.com.mx\/*", "*:\/\/amazon.com\/*", "*:\/\/amazon.cn\/*", "*:\/\/amazon.in\/*", "*:\/\/amazon.co.jp\/*", "*:\/\/amazon.sa\/*", "*:\/\/amazon.sg\/*", "*:\/\/amazon.com.tr\/*", "*:\/\/amazon.ae\/*", "*:\/\/amazon.com.be\/*", "*:\/\/amazon.fr\/*", "*:\/\/amazon.de\/*", "*:\/\/amazon.it\/*", "*:\/\/amazon.nl\/*", "*:\/\/amazon.pl\/*", "*:\/\/amazon.es\/*", "*:\/\/amazon.se\/*", "*:\/\/amazon.co.uk\/*", "*:\/\/amazon.com.au\/*" ], "js": [ "content.js" ] }, { "matches": [ "https:\/\/amzrd.account.mxnpro.ovh\/*" ], "js": [ "account.js" ], "all_frames": true }, { "matches": [ "https:\/\/amazon-reviews-exporter.mxnpro.ovh\/*" ], "js": [ "updatev2.js" ], "all_frames": true } ], "web_accessible_resources": [ { "resources": [ "\/public\/*" ], "matches": [ "*:\/\/*\/*" ] } ] } |