Google Calendar Color

Adds color to weekends in Google Calendar

Vad är Google Calendar Color?

Google Calendar Color är en Chrome-tillägg utvecklad av Mai Nakagawa, och dess huvudfunktion är "Adds color to weekends in Google Calendar".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Google Calendar Color-förlängningens CRX-fil

Ladda ner Google Calendar Color-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

                        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                    

Grundläggande Information om Tillägg

Namn Google Calendar Color Google Calendar Color
ID dgpackgbkgdjgchmdodmaaildnpnbdph
Officiell webbadress https://chrome.google.com/webstore/detail/google-calendar-color/dgpackgbkgdjgchmdodmaaildnpnbdph
Beskrivning Adds color to weekends in Google Calendar
Filstorlek 35.05 KB
Antal Installationer 1,000
Aktuell Version 1.2.0
Senast Uppdaterad 2016-10-03
Publiceringsdatum 2016-10-03
Betyg 1.20/5 Totalt 5 Betyg
Utvecklare Mai Nakagawa
E-post [email protected]
Betalningssätt free
Stödda Språk 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
}