Chrome Do Not Disturb
Hit the snooze button on your Chrome desktop notifications!
Chrome Do Not Disturbคืออะไร?
Chrome Do Not Disturb เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Nick Spreitzer และคุณลักษณะหลักของมันคือ "Hit the snooze button on your Chrome desktop notifications!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Chrome Do Not Disturb
ดาวน์โหลดไฟล์ส่วนขยาย Chrome Do Not Disturb ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Have you ever wished you could turn off Chrome's desktop notifications for a few minutes or hours? Maybe you're suffering from notification fatigue. Maybe you're about to demo something on your computer and don't want your coworkers to bear witness to your spouse's gushy 'I love youuuuuuu' messages or your crass friend's NSFW jokes. (I'm assuming I'm not the only one with these problems. lol) Well, now you can! Chrome Do Not Disturb will disable desktop notifications for a specified amount of time and then turn them back on for you automatically. Easy peasy. ===== THE FINE PRINT ===== As of the current version of this extension (v0.5.1 and up), "Allow All" is no longer used. When Do Not Disturb is enabled, all notifications will be blocked. However, when Do Not Disturb is disabled, Chrome will simply revert back to your default notification setting, which usually is set to "Ask". That means if you've blocked a site's notifications, they will remain permanently blocked regardless of whether Do Not Disturb is on or off. Further, when Do Not Disturb is off, you will always be asked before notifications are displayed for a particular website. Release History: https://github.com/refactorsaurusrex/ChromeDND/releases FAQ: https://github.com/refactorsaurusrex/ChromeDND/wiki/FAQ
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Chrome Do Not Disturb |
ID | kidgbjjjkhkickaakajjpgdkcfnidphn |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/chrome-do-not-disturb/kidgbjjjkhkickaakajjpgdkcfnidphn |
คำอธิบาย | Hit the snooze button on your Chrome desktop notifications! |
ขนาดไฟล์ | 19.7 KB |
จำนวนการติดตั้ง | 2,871 |
เวอร์ชันปัจจุบัน | 0.5.2 beta |
อัปเดตครั้งล่าสุด | 2020-11-20 |
วันที่เผยแพร่ | 2018-06-01 |
คะแนน | 3.75/5 รวมทั้งหมด 20 คะแนน |
ผู้พัฒนา | Nick Spreitzer |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/refactorsaurusrex/ChromeDND |
URL หน้าช่วยเหลือ | https://github.com/refactorsaurusrex/ChromeDND/issues |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Chrome Do Not Disturb", "version": "0.5.2", "description": "Hit the snooze button on your Chrome desktop notifications!", "icons": { "16": "images\/bell-16.png", "32": "images\/bell-32.png", "128": "images\/bell-128.png" }, "browser_action": { "default_icon": "images\/bell-gray-16.png", "default_popup": "dnd-inactive.html" }, "permissions": [ "contentSettings", "alarms", "notifications" ], "background": { "scripts": [ "eventPage.js", "snooze.js" ], "persistent": false }, "version_name": "0.5.2 beta" } |