Better Google Calendar Alert
Replaces the Google Calendar popup with something less intrusive
Better Google Calendar Alert란 무엇입니까?
Better Google Calendar Alert은(는) Jesse Dhillon에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Replaces the Google Calendar popup with something less intrusive"입니다.
확장 프로그램 스크린샷
Better Google Calendar Alert 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
For people who hate how Google Calendar's alerts steal the focused tab and prevent you from clicking on anything until you've acknowledged the alert. This shows a nice, non-intrusive window, plays a sound (maximum of once per five minutes), and flashes an icon on the calendar tab. It stacks up multiple alerts, so you can dismiss them all at once or go through them one-by-one. It's pretty much how things should have been to begin with.
확장 프로그램 기본 정보
이름 | |
ID | ijogfdkhokonapihokncpclfeaohcnfp |
공식 URL | https://chrome.google.com/webstore/detail/better-google-calendar-al/ijogfdkhokonapihokncpclfeaohcnfp |
설명 | Replaces the Google Calendar popup with something less intrusive |
파일 크기 | 53.85 KB |
설치 횟수 | 830 |
현재 버전 | 1.0.1 |
최근 업데이트 | 2015-11-09 |
출시 날짜 | 2015-11-09 |
평점 | 2.75/5 총 8 개의 평점 |
개발자 | Jesse Dhillon |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Better Google Calendar Alert", "short_name": "Better Alert", "description": "Replaces the Google Calendar popup with something less intrusive", "version": "1.0.1", "icons": { "16": "gcal-alert16.png", "32": "gcal-alert32.png", "48": "gcal-alert48.png", "64": "gcal-alert64.png", "128": "gcal-alert128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.google.com\/calendar\/*", "https:\/\/calendar.google.com\/calendar\/*" ], "css": [ "gcal-alert.css" ], "js": [ "gcal-alert.js" ] } ], "web_accessible_resources": [ "icon-bell.svg", "sound-notification.ogg", "favicon.ico" ], "permissions": [ "activeTab" ] } |