Vereday
Vereday Chrome Extension
ما هو Vereday؟
Vereday هو إضافة Chrome تم تطويرها بواسطة Cat، والميزة الرئيسية لها هي "Vereday Chrome Extension".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Vereday
قم بتنزيل ملفات الامتداد Vereday بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Vereday is a browser extension that suggests more values-aligned (e.g. sustainable, minority-owned) product alternatives as you're shopping on Amazon.com. We crowdsource recommendations from consumers who share your values and product performance needs.
معلومات أساسية عن التمديد
الاسم | |
ID | efnehdacclgcmffookfeeopocmhobfna |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/vereday/efnehdacclgcmffookfeeopocmhobfna |
الوصف | Vereday Chrome Extension |
حجم الملف | 148 KB |
عدد التثبيتات | 38 |
النسخة الحالية | 1.0.0 |
آخر تحديث | 2021-10-31 |
تاريخ النشر | 2021-01-21 |
تقييم | 5.00/5 مجموع تقييمات 2 |
المطور | Cat |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://vereday.com/ |
عنوان صفحة سياسة الخصوصية | https://vereday.com/privacy |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Vereday", "description": "Vereday Chrome Extension", "version": "1.0.0", "icons": { "16": ".\/images\/Active16.png", "48": ".\/images\/Active48.png", "128": ".\/images\/Active128.png" }, "action": { "default_popup": "popup.html", "default_title": "Vereday", "default_icon": ".\/images\/Inactive128.png" }, "permissions": [ "storage", "cookies", "tabs" ], "host_permissions": [ "https:\/\/vereday.com\/*" ], "background": { "service_worker": "background.js" }, "web_accessible_resources": [ { "resources": [ "*.png" ], "matches": [ "https:\/\/www.amazon.com\/*" ] } ], "content_scripts": [ { "matches": [ "https:\/\/www.amazon.com\/s?k=*", "https:\/\/www.amazon.com\/*\/dp\/*" ], "js": [ "contentScript.js" ] }, { "matches": [ "https:\/\/vereday.com\/*" ], "js": [ "loginScript.js" ] } ] } |