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."입니다.
확장 프로그램 스크린샷
Safer Send Button 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
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 } } |