Google Calendar: Add AND remove calendars
Chrome extension to turn the "Add a coworker's calendar" field in Google Calendar into a toggle for adding AND removing calendars.
Google Calendar: Add AND remove calendarsとは何ですか?
Google Calendar: Add AND remove calendarsはSeth Walkerによって開発されたChromeの拡張機能で、その主な機能は「Chrome extension to turn the "Add a coworker's calendar" field in Google Calendar into a toggle for adding AND removing calendars.」です。
Google Calendar: Add AND remove calendars拡張機能のCRXファイルをダウンロード
Google Calendar: Add AND remove calendars拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Chrome extension to turn the "Add a coworker's calendar" field in Google Calendar into a toggle for adding AND removing calendars.
It also sorts coworkers calendars to put active calendars at the top. 拡張機能の基本情報
| 名前 | |
| ID | dooidmblcmickgannljbomjfccagbhlh |
| 公式URL | https://chrome.google.com/webstore/detail/google-calendar-add-and-r/dooidmblcmickgannljbomjfccagbhlh |
| 説明 | Chrome extension to turn the "Add a coworker's calendar" field in Google Calendar into a toggle for adding AND removing calendars. |
| ファイルサイズ | 194 KB |
| インストール数 | 33 |
| 現在のバージョン | 0.1 |
| 最終更新日 | 2014-10-28 |
| 公開日 | 2014-10-28 |
| 開発者 | Seth Walker |
| 支払い方法 | free |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Google Calendar: Add AND remove calendars",
"description": "Chrome extension to turn the \"Add a coworker's calendar\" field in Google Calendar into a toggle for adding AND removing calendars.",
"version": "0.1",
"content_scripts": [
{
"matches": [
"https:\/\/www.google.com\/calendar\/*",
"http:\/\/www.google.com\/calendar\/*"
],
"js": [
"node_modules\/email-addresses\/lib\/email-addresses.js",
"node_modules\/underscore\/underscore.js",
"index.js"
],
"run_at": "document_end"
}
],
"permissions": [
"https:\/\/www.google.com\/calendar\/*"
],
"icons": {
"128": "icon128.png"
},
"manifest_version": 2
} | |