Check on Send
Check email recipients before sending
Check on Sendคืออะไร?
Check on Send เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Check on Send และคุณลักษณะหลักของมันคือ "Check email recipients before sending"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Check on Send
ดาวน์โหลดไฟล์ส่วนขยาย Check on Send ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Check on Send allows you to configure your Gmail account to help automatically warn you before potentially sending an email to unintended recipients. Targeted at G-Suite business users to help protect sensitive information from being accidentally disclosed to the wrong people. Check on Send allows you to flag some domains as safe while treating all others as untrusted for which you will be prompted to confirm before sending an email. Recipients are dynamically colour coded as you add them to your email draft, and you can also configure specific colour mappings to help visually spot particular untrusted domains before you click send. If you have signed into Google using your G-Suite account you can also benefit from Check on Send syncing your settings against your profile across multiple devices. Please note that you will need to refresh your browser for any active Gmail tabs to update when first installing or enabling/disabling the extension. I developed this extension given how easily one can accidentally pull in the wrong recipient with auto-complete, and following feedback from colleagues that something like this would be useful. For any comments and feedback please email [email protected]. PRIVACY NOTICE: Check on Send does not collect any personal information, nor does it read or track any information about the content of your emails. The only tracked information is limited to the trusted domains you specify and the first 50 untrusted email domains as these are automatically assigned unique colour mappings. This information is only stored against your own Google account extension profile using the Google Sync API managed and hosted by Google. Check on Send does not otherwise transmit this information beyond your browser.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Check on Send |
ID | ljihbinbchekliclhbfnppcfmklebfbf |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/check-on-send/ljihbinbchekliclhbfnppcfmklebfbf |
คำอธิบาย | Check email recipients before sending |
ขนาดไฟล์ | 50.79 KB |
จำนวนการติดตั้ง | 43 |
เวอร์ชันปัจจุบัน | 1.3.1 |
อัปเดตครั้งล่าสุด | 2021-01-17 |
วันที่เผยแพร่ | 2021-01-17 |
ผู้พัฒนา | Check on Send |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Check on Send", "version": "1.3.1", "description": "Check email recipients before sending", "permissions": [ "declarativeContent", "storage" ], "options_page": "options.html", "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*" ], "run_at": "document_idle", "all_frames": true, "js": [ "contentScript.js" ] } ], "page_action": { "default_popup": "options.html", "default_icon": { "16": "images\/at-circle-blue-16.png", "32": "images\/at-circle-blue-32.png", "48": "images\/at-circle-blue-48.png", "128": "images\/at-circle-blue-128.png" } }, "icons": { "16": "images\/at-circle-blue-16.png", "32": "images\/at-circle-blue-32.png", "48": "images\/at-circle-blue-48.png", "128": "images\/at-circle-blue-128.png" }, "manifest_version": 2 } |