Amazon Reviews Scraper
This extension will help scrape reviews of Amazon products.
ما هو Amazon Reviews Scraper؟
Amazon Reviews Scraper هو إضافة Chrome تم تطويرها بواسطة EverdayExtensions، والميزة الرئيسية لها هي "This extension will help scrape reviews of Amazon products.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Amazon Reviews Scraper
قم بتنزيل ملفات الامتداد Amazon Reviews Scraper بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان URL الرسمي | 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" ] } |