Safer Send Button

Make gmail send button safer and reduce accidental sends and data leakage.

什么是Safer Send Button?

Safer Send Button是由avner.dev开发的Chrome扩展程序,该扩展的主要功能是“Make gmail send button safer and reduce accidental sends and data leakage.”。

扩展截图

screenshot

下载Safer Send Button扩展crx文件

下载Safer Send Button扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Reduce accidental sends and data leakage with the "Safe Send" button for Gmail.
This extension is designed to alert the sender when an email is drafted, by showing dynamic emojis when working in Gmail for Business.


Avoid common mistakes such as: 

1. Unknowingly sending an email outside of your domain or organization (Gmail will only warn if the recipient is not already in your contacts, which most of us don't remember to use)
2. Mixing up mails to multiple contacts from multiple companies - avoid that 'Oops, I cc'd the wrong Tony'

The implementation is based on the gmail JavaScript client - https://github.com/KartikTalwar/gmail.js)                    

扩展基本信息

名称 Safer Send Button Safer Send Button
ID megjllekamffilchcicgdgmfeimicebh
官方URL https://chromewebstore.google.com/detail/safer-send-button/megjllekamffilchcicgdgmfeimicebh
简介 Make gmail send button safer and reduce accidental sends and data leakage.
文件大小 99.29 KB
安装次数 222
当前版本 3.0.3
更新时间 2022-11-19
上架时间 2020-09-29
开发者 avner.dev
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/AvnerCohen/safer-send-gmail
帮助页面URL https://avner.me
隐私政策页面URL https://avner.me/privacypolicy
支持的语言 en
manifest.json
{
    "content_scripts": [
        {
            "css": [
                "main.css"
            ],
            "js": [
                "main.js",
                "lib\/jquery-3.6.1.min.js",
                "lib\/gmail.js",
                "content.js"
            ],
            "matches": [
                "https:\/\/mail.google.com\/*"
            ]
        }
    ],
    "description": "Make gmail send button safer and reduce accidental sends and data leakage.",
    "homepage_url": "https:\/\/github.com\/AvnerCohen\/safer-send-gmail",
    "icons": {
        "128": "logo.png",
        "16": "logo.png"
    },
    "manifest_version": 3,
    "name": "Safer Send Button",
    "permissions": [
        "storage"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "3.0.3",
    "web_accessible_resources": [
        {
            "resources": [
                "lib\/gmail.js",
                "lib\/jquery-3.6.1.min.js",
                "content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    }
}