Shade non-working hours for Google Calendar
Grey-out your non-working hours in Google Calendar to quickly see when you are on the clock 💯
Shade non-working hours for Google Calendarとは何ですか?
Shade non-working hours for Google CalendarはMadeleine Smith Softwareによって開発されたChromeの拡張機能で、その主な機能は「Grey-out your non-working hours in Google Calendar to quickly see when you are on the clock 💯」です。
拡張機能のスクリーンショット
Shade non-working hours for Google Calendar拡張機能のCRXファイルをダウンロード
Shade non-working hours for Google Calendar拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
About:
• This extension allows you to 'grey-out' your non-working hours in the day, week and '4 day' views of Google Calendar.
• Use it to quickly see which hours of your day are blocked off for work and non-work time.
Usage instructions:
• Click into the extension to set your personal working hours 👩💻
Disclaimer:
• I'm in no way affiliated with Google or the Google Calendar brand 💯 拡張機能の基本情報
| 名前 | |
| ID | hdlfamnpialfmlkddnmijnimciflhbjo |
| 公式URL | https://chromewebstore.google.com/detail/shade-non-working-hours-f/hdlfamnpialfmlkddnmijnimciflhbjo |
| 説明 | Grey-out your non-working hours in Google Calendar to quickly see when you are on the clock 💯 |
| ファイルサイズ | 24.88 MB |
| インストール数 | 2,214 |
| 現在のバージョン | 1.4.0 |
| 最終更新日 | 2023-04-15 |
| 公開日 | 2022-10-27 |
| 評価 | 4.46/5 合計 13 レビュー |
| 開発者 | Madeleine Smith Software |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://www.madeleinesmith.uk/ |
| ヘルプページのURL | https://chrome.google.com/webstore/detail/shade-non-working-hours-f/hdlfamnpialfmlkddnmijnimciflhbjo?hl=en-GB&authuser=0 |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Shade non-working hours for Google Calendar",
"action": {
"default_popup": "popup.html"
},
"manifest_version": 3,
"version": "1.4.0",
"description": "Grey-out your non-working hours in Google Calendar to quickly see when you are on the clock \ud83d\udcaf",
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": [
"https:\/\/calendar.google.com\/*"
],
"js": [
"content.js"
],
"run_at": "document_idle"
}
],
"background": {
"service_worker": "background.js"
},
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
} | |