switchCalender
Toggle Google Calendar to display with Click
switchCalender란 무엇입니까?
switchCalender은(는) Nimble-Work에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Toggle Google Calendar to display with Click"입니다.
확장 프로그램 스크린샷
switchCalender 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Googleカレンダーで、多くのカレンダーを表示している場合、必要なカレンダーだけを表示することが面倒です。 SwitchCalenderは、そんな場面でGoogleカレンダーをもっと便利に使う為の拡張機能です。 表示するカレンダーに、会社や組織、所属チームなどのグループ名を付けて保存することができます。 グループ名をクリックすることで保存したカレンダーを表示することができます。 ※クリックを連打する必要があります また、アカウントへの接続や閲覧履歴の取得を必要としないため、安心です。 これで毎日の煩わしさから解放されます。ぜひお試しください。 -------------------- If you are displaying a lot of calendars in Google Calendar, it is troublesome to display only the calendars you need. SwitchCalender is an extension to make Google Calendar more useful in such situations. You can save the calendar to be displayed with the group name such as company, organization, team you belong to. By clicking the group name you can display the saved calendar. ※ You need to hit repeated clicks This frees us from the annoying everyday. Please try. Moreover, it does not need connection to the account and acquisition of browsing history, so it is safe.
확장 프로그램 기본 정보
이름 | |
ID | mjoafpffhnpekihpmbhhnggnhgmoakon |
공식 URL | https://chrome.google.com/webstore/detail/switchcalender/mjoafpffhnpekihpmbhhnggnhgmoakon |
설명 | Toggle Google Calendar to display with Click |
파일 크기 | 654 KB |
설치 횟수 | 41 |
현재 버전 | 1.0 |
최근 업데이트 | 2017-12-19 |
출시 날짜 | 2017-12-19 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | Nimble-Work |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "switchCalender", "description": "Toggle Google Calendar to display with Click", "version": "1.0", "permissions": [ "activeTab", "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "storage" ], "icons": { "16": "images\/SC-19.png", "48": "images\/SC-48.png", "128": "images\/SC-128.png" }, "background": { "scripts": [ "jquery-2.1.4.min.js", "background.js" ] }, "browser_action": { "default_icon": "images\/SC-19.png", "default_title": "SwitchCalender setting", "name": "SwitchCalender", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/calendar.google.com\/calendar\/render*" ], "js": [ "jquery-2.1.4.min.js", "content_scripts.js" ] } ] } |