Gmail Auto BCC
Open source automatic cc/bcc for gmail.
什么是Gmail Auto BCC?
Gmail Auto BCC是由https://myoutdesk.com开发的Chrome扩展程序,该扩展的主要功能是“Open source automatic cc/bcc for gmail.”。
扩展截图
下载Gmail Auto BCC扩展crx文件
下载Gmail Auto BCC扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
- Automatic CC & BCC for Gmail, now with multiple sender support
- Customize rules based on sender information
- Auto-populate recipients for sends and replies
- Ad-free, distraction-free, tracking-free environment
- Enhances Gmail productivity 扩展基本信息
| 名称 | |
| ID | ofegoambibneigpiejjadgfahhncpcoh |
| 官方URL | https://chromewebstore.google.com/detail/gmail-auto-bcc/ofegoambibneigpiejjadgfahhncpcoh |
| 简介 | Open source automatic cc/bcc for gmail. |
| 文件大小 | 346 KB |
| 安装次数 | 485 |
| 当前版本 | 1.7 |
| 更新时间 | 2024-02-21 |
| 上架时间 | 2022-09-26 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | https://myoutdesk.com |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/MyOutDeskLLC/auto-bcc |
| 帮助页面URL | https://github.com/MyOutDeskLLC/auto-bcc |
| 隐私政策页面URL | https://github.com/MyOutDeskLLC/OSS-Privacy-Policy/blob/main/PRIVACY.md |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Gmail Auto BCC",
"description": "Open source automatic cc\/bcc for gmail.",
"version": "1.7",
"manifest_version": 3,
"web_accessible_resources": [
{
"matches": [
"https:\/\/inbox.google.com\/*",
"https:\/\/mail.google.com\/*"
],
"resources": [
"src\/icons\/gray-scale-orange-square-mail.png",
"src\/icons\/orange-square-mail.png"
],
"use_dynamic_url": false
},
{
"matches": [
"https:\/\/inbox.google.com\/*",
"https:\/\/mail.google.com\/*"
],
"resources": [
"assets\/gmail.ts-7-KkizdX.js"
],
"use_dynamic_url": true
}
],
"content_scripts": [
{
"js": [
"assets\/gmail.ts-loader-IvZeWprR.js"
],
"matches": [
"https:\/\/mail.google.com\/*",
"https:\/\/inbox.google.com\/*"
],
"run_at": "document_start"
}
],
"background": {
"service_worker": "service-worker-loader.js",
"type": "module"
},
"host_permissions": [
"https:\/\/mail.google.com\/",
"https:\/\/inbox.google.com\/"
],
"permissions": [
"storage"
],
"action": {
"default_icon": {
"128": "src\/icons\/orange-square-mail.png"
},
"default_title": "Gmail AutoBCC"
},
"icons": {
"128": "src\/icons\/orange-square-mail.png"
},
"options_page": "index.html"
} | |