Calendar Dots

Change Dot Color to Reflect Event Tag Color

Cos'è Calendar Dots?

Calendar Dots è un'estensione di Chrome sviluppata da afree1423, e la sua funzione principale è "Change Dot Color to Reflect Event Tag Color".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Calendar Dots

Scarica i file di estensione Calendar Dots in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Calendar Dots Calendar Dots
ID idkiplkpioepnfaifnnlknbnafkhcine
URL Ufficiale https://chromewebstore.google.com/detail/calendar-dots/idkiplkpioepnfaifnnlknbnafkhcine
Descrizione Change Dot Color to Reflect Event Tag Color
Dimensione del File 69.3 KB
Conteggio Installazioni 89
Versione Corrente 0.6
Ultimo Aggiornamento 2019-12-10
Data di Pubblicazione 2019-12-10
Sviluppatore afree1423
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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\/"
    ]
}