Amazon Review Scraper
Scrape Amazon reviews, ratings with this extension.
ما هو Amazon Review Scraper؟
Amazon Review Scraper هو إضافة Chrome تم تطويرها بواسطة sarathisahoo، والميزة الرئيسية لها هي "Scrape Amazon reviews, ratings with this extension.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Amazon Review Scraper
قم بتنزيل ملفات الامتداد Amazon Review Scraper بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان URL الرسمي | 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 |
عنوان صفحة سياسة الخصوصية | 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" } |