Vereday
Vereday Chrome Extension
Apa itu Vereday?
Vereday adalah ekstensi Chrome yang dikembangkan oleh Cat, dan fitur utamanya adalah "Vereday Chrome Extension".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Vereday
Unduh file ekstensi Vereday dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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. Informasi Dasar Ekstensi
| Nama | |
| ID | efnehdacclgcmffookfeeopocmhobfna |
| URL Resmi | https://chrome.google.com/webstore/detail/vereday/efnehdacclgcmffookfeeopocmhobfna |
| Deskripsi | Vereday Chrome Extension |
| Ukuran File | 148 KB |
| Jumlah Instalasi | 38 |
| Versi Saat Ini | 1.0.0 |
| Terakhir Diperbarui | 2021-10-31 |
| Tanggal Publikasi | 2021-01-21 |
| Penilaian | 5.00/5 Total 2 Penilaian |
| Pengembang | Cat |
| [email protected] | |
| Tipe Pembayaran | free |
| Situs Ekstensi | https://vereday.com/ |
| URL Halaman Kebijakan Privasi | https://vereday.com/privacy |
| Bahasa yang Didukung | 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"
]
}
]
} | |