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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Nir Azuelos (losnir), και η κύρια λειτουργία του είναι "This extension injects various font styling features alongside the toolbar in Google Calendar".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Google Calendar with Readable Fonts
Λήψη αρχείων επέκτασης 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) |
Ηλεκτρονικό ταχυδρομείο | [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" } } |