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 |
| 官方網址 | 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"
]
}
]
} | |