Calendar Dots
Change Dot Color to Reflect Event Tag Color
Qu'est-ce que Calendar Dots ?
Calendar Dots est une extension Chrome développée par afree1423, et sa fonction principale est "Change Dot Color to Reflect Event Tag Color".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Calendar Dots
Téléchargez les fichiers d'extension Calendar Dots au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Google calendar now shows event names in the color of the calendar. This extension uses the new dots next to the event to show whatever color you select for each event (use green to mark as completed, etc). Developed by Addison Freeman (addisonfreeman.com) Sponsored by moveON Moving (https://www.moveonmoving.com) MIT license, source here: https://github.com/AddisonFreeman/Google-Calendar-Dot-Color-Fix
Informations de Base sur l'Extension
Nom | Calendar Dots |
ID | idkiplkpioepnfaifnnlknbnafkhcine |
URL Officiel | https://chromewebstore.google.com/detail/calendar-dots/idkiplkpioepnfaifnnlknbnafkhcine |
Description | Change Dot Color to Reflect Event Tag Color |
Taille du Fichier | 69.3 KB |
Nombre d'Installations | 89 |
Version Actuelle | 0.6 |
Dernière Mise à Jour | 2019-12-10 |
Date de Publication | 2019-12-10 |
Développeur | afree1423 |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Calendar Dots", "description": "Change Dot Color to Reflect Event Tag Color", "version": "0.6", "icons": { "16": "img\/icon16.png", "19": "img\/icon19.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "options_page": "options.html", "content_scripts": [ { "matches": [ "https:\/\/calendar.google.com\/*" ], "js": [ "\/lib\/jquery.js", "js\/content.js" ], "css": [ "content.css" ] } ], "background": { "scripts": [ "js\/background.js" ] }, "browser_action": { "default_icon": "img\/icon128.png" }, "permissions": [ "activeTab", "tabs", "https:\/\/ajax.googleapis.com\/" ] } |