Google Calendar with Readable Fonts
This extension injects various font styling features alongside the toolbar in Google Calendar
Google Calendar with Readable Fonts란 무엇입니까?
Google Calendar with Readable Fonts은(는) Nir Azuelos (losnir)에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension injects various font styling features alongside the toolbar in Google Calendar"입니다.
확장 프로그램 스크린샷
Google Calendar with Readable Fonts 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This is an extension I've programmed for my girlfriend, after she asked me how to increase the font size for events in Google Calendar because they were unreadable on her tiny laptop screen, since I realized that others have asked this as-well in Google Product Forum, but there was no real solution. So I've decided to publish this extension on the assumption that others might benefit from it as well. The extension changes the event font-styling by injecting a number (+/-) input to select the font size, and a check-box to turn on / off bold fonts, alongside the toolbar in Google Calendar. ========= Features: ========= - Changes the font styling of all calendar events - Choose a font size from 1px to infinity, toggle bold on / off - All settings are automatically saved & synced between remote browsers =========== Change log: =========== * Version 1.0.1: - Set default font-size to 14px (was 1px). * Version 1.0: Initial.
확장 프로그램 기본 정보
이름 | |
ID | jjehkplomajbaglnaaccioapndbipfik |
공식 URL | https://chrome.google.com/webstore/detail/google-calendar-with-read/jjehkplomajbaglnaaccioapndbipfik |
설명 | This extension injects various font styling features alongside the toolbar in Google Calendar |
파일 크기 | 11.49 KB |
설치 횟수 | 38,984 |
현재 버전 | 1.0.1 |
최근 업데이트 | 2013-06-27 |
출시 날짜 | 2013-06-27 |
평점 | 2.85/5 총 39 개의 평점 |
개발자 | Nir Azuelos (losnir) |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Google Calendar with Readable Fonts", "description": "This extension injects various font styling features alongside the toolbar in Google Calendar", "version": "1.0.1", "content_scripts": [ { "js": [ "main.js" ], "matches": [ "*:\/\/*.google.com\/calendar\/*" ], "permissions": [ "tabs", "*:\/\/*.google.com\/calendar\/*" ] } ], "permissions": [ "storage" ], "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" } } |