Vereday
Vereday Chrome Extension
Wat is Vereday?
Vereday is een Chrome-extensie ontwikkeld door Cat, en de belangrijkste functie is "Vereday Chrome Extension".
Extensie Screenshots
Download het CRX-bestand van de extensie Vereday
Download Vereday-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | |
ID | efnehdacclgcmffookfeeopocmhobfna |
Officiële URL | https://chrome.google.com/webstore/detail/vereday/efnehdacclgcmffookfeeopocmhobfna |
Beschrijving | Vereday Chrome Extension |
Bestandsgrootte | 148 KB |
Aantal Installaties | 38 |
Huidige Versie | 1.0.0 |
Laatst Bijgewerkt | 2021-10-31 |
Publicatiedatum | 2021-01-21 |
Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | Cat |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://vereday.com/ |
URL van de Privacybeleid Pagina | https://vereday.com/privacy |
Ondersteunde Talen | 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" ] } ] } |