Vereday
Vereday Chrome Extension
什么是Vereday?
Vereday是由Cat开发的Chrome扩展程序,该扩展的主要功能是“Vereday Chrome Extension”。
扩展截图
下载Vereday扩展crx文件
下载Vereday扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | |
ID | efnehdacclgcmffookfeeopocmhobfna |
官方URL | https://chrome.google.com/webstore/detail/vereday/efnehdacclgcmffookfeeopocmhobfna |
简介 | Vereday Chrome Extension |
文件大小 | 148 KB |
安装次数 | 38 |
当前版本 | 1.0.0 |
更新时间 | 2021-10-31 |
上架时间 | 2021-01-21 |
评分 | 5.00/5 共2次评分 |
开发者 | Cat |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://vereday.com/ |
隐私政策页面URL | https://vereday.com/privacy |
支持的语言 | 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" ] } ] } |