Calendar Dots

Change Dot Color to Reflect Event Tag Color

Vad är Calendar Dots?

Calendar Dots är en Chrome-tillägg utvecklad av afree1423, och dess huvudfunktion är "Change Dot Color to Reflect Event Tag Color".

Tilläggsskärmbilder

screenshot

Ladda ner Calendar Dots-förlängningens CRX-fil

Ladda ner Calendar Dots-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Calendar Dots Calendar Dots
ID idkiplkpioepnfaifnnlknbnafkhcine
Officiell webbadress https://chromewebstore.google.com/detail/calendar-dots/idkiplkpioepnfaifnnlknbnafkhcine
Beskrivning Change Dot Color to Reflect Event Tag Color
Filstorlek 69.3 KB
Antal Installationer 89
Aktuell Version 0.6
Senast Uppdaterad 2019-12-10
Publiceringsdatum 2019-12-10
Utvecklare afree1423
E-post [email protected]
Betalningssätt free
Stödda Språk 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\/"
    ]
}