Vereday
Vereday Chrome Extension
Veredayคืออะไร?
Vereday เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Cat และคุณลักษณะหลักของมันคือ "Vereday Chrome Extension"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Vereday
ดาวน์โหลดไฟล์ส่วนขยาย Vereday ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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/ |
URL หน้านโยบายความเป็นส่วนตัว | 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" ] } ] } |