Vereday

Vereday Chrome Extension

Vereday là gì?

Vereday là một tiện ích mở rộng Chrome được phát triển bởi Cat, và tính năng chính của nó là "Vereday Chrome Extension".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Vereday

Tải xuống các tệp mở rộng Vereday dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Vereday Vereday
ID efnehdacclgcmffookfeeopocmhobfna
URL Chính Thức https://chrome.google.com/webstore/detail/vereday/efnehdacclgcmffookfeeopocmhobfna
Mô tả Vereday Chrome Extension
Kích Thước Tệp 148 KB
Số Lần Cài Đặt 38
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2021-10-31
Ngày Phát Hành 2021-01-21
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Cat
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://vereday.com/
URL Trang Chính Sách Bảo Mật https://vereday.com/privacy
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}