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”。

擴展截圖

screenshot
screenshot

下載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.                    

擴展基本資訊

名稱 Google Calendar with Readable Fonts Google Calendar with Readable Fonts
ID jjehkplomajbaglnaaccioapndbipfik
官方網址 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"
    }
}