Calendar Dots
Change Dot Color to Reflect Event Tag Color
Was ist Calendar Dots?
Calendar Dots ist eine Chrome-Erweiterung, die von afree1423 entwickelt wurde, und ihr Hauptmerkmal ist "Change Dot Color to Reflect Event Tag Color".
Erweiterungsscreenshots
Calendar Dots-Erweiterungs-CRX-Datei herunterladen
Laden Sie Calendar Dots-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Calendar Dots |
ID | idkiplkpioepnfaifnnlknbnafkhcine |
Offizielle URL | https://chromewebstore.google.com/detail/calendar-dots/idkiplkpioepnfaifnnlknbnafkhcine |
Beschreibung | Change Dot Color to Reflect Event Tag Color |
Dateigröße | 69.3 KB |
Installationsanzahl | 89 |
Aktuelle Version | 0.6 |
Letztes Update | 2019-12-10 |
Veröffentlichungsdatum | 2019-12-10 |
Entwickler | afree1423 |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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\/" ] } |