Google Calendar Color

Adds color to weekends in Google Calendar

Qu'est-ce que Google Calendar Color ?

Google Calendar Color est une extension Chrome développée par Mai Nakagawa, et sa fonction principale est "Adds color to weekends in Google Calendar".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Google Calendar Color

Téléchargez les fichiers d'extension Google Calendar Color au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Google Calendar Color Google Calendar Color
ID dgpackgbkgdjgchmdodmaaildnpnbdph
URL Officiel https://chrome.google.com/webstore/detail/google-calendar-color/dgpackgbkgdjgchmdodmaaildnpnbdph
Description Adds color to weekends in Google Calendar
Taille du Fichier 35.05 KB
Nombre d'Installations 1,000
Version Actuelle 1.2.0
Dernière Mise à Jour 2016-10-03
Date de Publication 2016-10-03
Évaluation 1.20/5 Total 5 Évaluations
Développeur Mai Nakagawa
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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
}