Vereday

Vereday Chrome Extension

What is Vereday?

Vereday is a Chrome extension developed by Cat, and its main feature is "Vereday Chrome Extension".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Vereday Extension CRX File

Download Vereday extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Vereday Vereday
ID efnehdacclgcmffookfeeopocmhobfna
Official URL https://chrome.google.com/webstore/detail/vereday/efnehdacclgcmffookfeeopocmhobfna
Description Vereday Chrome Extension
File Size 148 KB
Installation Count 38
Current Version 1.0.0
Last Updated 2021-10-31
Publish Date 2021-01-21
Rating 5.00/5 Total 2 Ratings
Developer Cat
Email [email protected]
Payment Type free
Extension Website https://vereday.com/
Privacy Policy Page URL https://vereday.com/privacy
Supported Languages 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"
            ]
        }
    ]
}