Calendar Dots

Change Dot Color to Reflect Event Tag Color

O que é Calendar Dots?

Calendar Dots é uma extensão do Chrome desenvolvida por afree1423, e sua principal característica é "Change Dot Color to Reflect Event Tag Color".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Calendar Dots

Baixe arquivos de extensão Calendar Dots no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Calendar Dots Calendar Dots
ID idkiplkpioepnfaifnnlknbnafkhcine
URL Oficial https://chromewebstore.google.com/detail/calendar-dots/idkiplkpioepnfaifnnlknbnafkhcine
Descrição Change Dot Color to Reflect Event Tag Color
Tamanho do Arquivo 69.3 KB
Contagem de Instalações 89
Versão Atual 0.6
Última Atualização 2019-12-10
Data de Publicação 2019-12-10
Desenvolvedor afree1423
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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\/"
    ]
}