Google Calendar Color

Adds color to weekends in Google Calendar

Wat is Google Calendar Color?

Google Calendar Color is een Chrome-extensie ontwikkeld door Mai Nakagawa, en de belangrijkste functie is "Adds color to weekends in Google Calendar".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Google Calendar Color

Download Google Calendar Color-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

                        Colorizes weekends not only in Google Calendar but in Google Tasks. The source code is hosted at https://github.com/mai-nakagawa/google-calendar-color                    

Basisinformatie over de Extensie

Naam Google Calendar Color Google Calendar Color
ID dgpackgbkgdjgchmdodmaaildnpnbdph
Officiële URL https://chrome.google.com/webstore/detail/google-calendar-color/dgpackgbkgdjgchmdodmaaildnpnbdph
Beschrijving Adds color to weekends in Google Calendar
Bestandsgrootte 35.05 KB
Aantal Installaties 1,000
Huidige Versie 1.2.0
Laatst Bijgewerkt 2016-10-03
Publicatiedatum 2016-10-03
Beoordeling 1.20/5 Totaal 5 Beoordelingen
Ontwikkelaar Mai Nakagawa
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Google Calendar Color",
    "description": "Adds color to weekends in Google Calendar",
    "version": "1.2.0",
    "browser_action": {
        "default_title": "Edit the color scheme",
        "default_popup": "html\/popup.html"
    },
    "icons": {
        "16": "images\/calendar.png",
        "48": "images\/calendar.png",
        "128": "images\/calendar.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/calendar.google.com\/*"
            ],
            "js": [
                "js\/content_script.js"
            ]
        }
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "js\/background.js"
        ]
    },
    "permissions": [
        "webNavigation",
        "tabs",
        "storage",
        "https:\/\/calendar.google.com\/*",
        "https:\/\/mail.google.com\/*",
        "http:\/\/localhost\/*"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "manifest_version": 2
}