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ファイルをダウンロード
Better Google Calendar Alert拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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" ] } |