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ファイルをダウンロード
Google Calendar with Readable Fonts拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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) |
Eメール | [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" } } |