Chrome Do Not Disturb
Hit the snooze button on your Chrome desktop notifications!
Chrome Do Not Disturb란 무엇입니까?
Chrome Do Not Disturb은(는) Nick Spreitzer에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Hit the snooze button on your Chrome desktop notifications!"입니다.
확장 프로그램 스크린샷
Chrome Do Not Disturb 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } |