Week Increment Google Calendar Custom View
Adds shortcuts to increment the custom week view for Google Calendar one week at a time.
Week Increment Google Calendar Custom View란 무엇입니까?
Week Increment Google Calendar Custom View은(는) ghde developer에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds shortcuts to increment the custom week view for Google Calendar one week at a time."입니다.
확장 프로그램 스크린샷
Week Increment Google Calendar Custom View 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Google Calendar lacks continuous scrolling for month view, making it difficult to work with events that cross between months. This extension aims to address this difficulty by allowing users to increment their view a week at a time in a multi-week view. Press Ctrl+Down or Ctrl+Up to move 'down' or 'up' one week respectively. (Command+Down or Command+Up on macOS) For this extension to work properly, you must set your Google Calendar's custom view to 2, 3, or 4 weeks (4 recommended). This app works by modifying the URL of your tab. As such, the page is refreshed every time you increment by a week. Be aware that this means any unsaved changes to an event will be lost when you increment your view.
확장 프로그램 기본 정보
이름 | Week Increment Google Calendar Custom View |
ID | mpdpfnabohjiinfoagikghmlnpnjmihg |
공식 URL | https://chromewebstore.google.com/detail/week-increment-google-cal/mpdpfnabohjiinfoagikghmlnpnjmihg |
설명 | Adds shortcuts to increment the custom week view for Google Calendar one week at a time. |
파일 크기 | 31.2 KB |
설치 횟수 | 574 |
현재 버전 | 0.2 |
최근 업데이트 | 2023-12-30 |
출시 날짜 | 2020-05-14 |
평점 | 3.83/5 총 6 개의 평점 |
개발자 | ghde developer |
이메일 | [email protected] |
결제 유형 | free |
도움말 페이지 URL | https://github.com/jose01carrillo30/GCalendarViewExtension/issues |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Week Increment Google Calendar Custom View", "version": "0.2", "description": "Adds shortcuts to increment the custom week view for Google Calendar one week at a time.", "permissions": [ "activeTab" ], "background": { "service_worker": "background.js" }, "icons": { "16": "images\/logo16.png", "32": "images\/logo32.png", "48": "images\/logo48.png", "128": "images\/logo128.png" }, "commands": { "01-up-week": { "suggested_key": { "default": "Ctrl+Up" }, "description": "Go backward one week in X-weeks custom view" }, "02-down-week": { "suggested_key": { "default": "Ctrl+Down" }, "description": "Go forward one week in X-weeks custom view" } }, "manifest_version": 3 } |