Vereday
Vereday Chrome Extension
Vad är Vereday?
Vereday är en Chrome-tillägg utvecklad av Cat, och dess huvudfunktion är "Vereday Chrome Extension".
Tilläggsskärmbilder
Ladda ner Vereday-förlängningens CRX-fil
Ladda ner Vereday-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | |
ID | efnehdacclgcmffookfeeopocmhobfna |
Officiell webbadress | https://chrome.google.com/webstore/detail/vereday/efnehdacclgcmffookfeeopocmhobfna |
Beskrivning | Vereday Chrome Extension |
Filstorlek | 148 KB |
Antal Installationer | 38 |
Aktuell Version | 1.0.0 |
Senast Uppdaterad | 2021-10-31 |
Publiceringsdatum | 2021-01-21 |
Betyg | 5.00/5 Totalt 2 Betyg |
Utvecklare | Cat |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://vereday.com/ |
URL till Sekretesspolicy Sidan | https://vereday.com/privacy |
Stödda Språk | 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" ] } ] } |