Calendar Dots

Change Dot Color to Reflect Event Tag Color

Τι είναι το Calendar Dots;

Το Calendar Dots είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον afree1423, και η κύρια λειτουργία του είναι "Change Dot Color to Reflect Event Tag Color".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Calendar Dots

Λήψη αρχείων επέκτασης Calendar Dots σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Calendar Dots Calendar Dots
ID idkiplkpioepnfaifnnlknbnafkhcine
Επίσημο URL https://chromewebstore.google.com/detail/calendar-dots/idkiplkpioepnfaifnnlknbnafkhcine
Περιγραφή Change Dot Color to Reflect Event Tag Color
Μέγεθος Αρχείου 69.3 KB
Αριθμός Εγκαταστάσεων 89
Τρέχουσα Έκδοση 0.6
Τελευταία Ενημέρωση 2019-12-10
Ημερομηνία Δημοσίευσης 2019-12-10
Προγραμματιστής afree1423
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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\/"
    ]
}