Calendar Dots
Change Dot Color to Reflect Event Tag Color
Wat is Calendar Dots?
Calendar Dots is een Chrome-extensie ontwikkeld door afree1423, en de belangrijkste functie is "Change Dot Color to Reflect Event Tag Color".
Extensie Screenshots
Download het CRX-bestand van de extensie Calendar Dots
Download Calendar Dots-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | Calendar Dots |
ID | idkiplkpioepnfaifnnlknbnafkhcine |
Officiële URL | https://chromewebstore.google.com/detail/calendar-dots/idkiplkpioepnfaifnnlknbnafkhcine |
Beschrijving | Change Dot Color to Reflect Event Tag Color |
Bestandsgrootte | 69.3 KB |
Aantal Installaties | 89 |
Huidige Versie | 0.6 |
Laatst Bijgewerkt | 2019-12-10 |
Publicatiedatum | 2019-12-10 |
Ontwikkelaar | afree1423 |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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\/" ] } |