Safer Send Button

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

Safer Send Buttonคืออะไร?

Safer Send Button เป็นส่วนขยายของ Chrome ที่พัฒนาโดย avner.dev และคุณลักษณะหลักของมันคือ "Make gmail send button safer and reduce accidental sends and data leakage."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Safer Send Button

ดาวน์โหลดไฟล์ส่วนขยาย 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
    }
}