More Colors for Calendar!

Adds more colors to Google Calendar!

Τι είναι το More Colors for Calendar!;

Το More Colors for Calendar! είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Adam Chang, και η κύρια λειτουργία του είναι "Adds more colors to Google Calendar!".

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

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης More Colors for Calendar!

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

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

                        Adds more colors to Google Calendar's color selection menu.

HOW TO USE:
This extension adds the ability to insert custom colors into Google Calendar events. Upon installing the extension, you might need to refresh Google Calendar for it to load. 

Once the extension has been installed, you can access the custom color creation by either right clicking events (accessing the color palette), or double clicking the event and accessing the other color palette within the advanced event details page.

You can verify that the extension has been installed properly by the existence of an additional circle in the color palette with a plus (+) sign. Clicking on this plus sign should prompt you to insert a custom color defined by a hexcode (For example, typing 000000 will give you the color black. One recommended place to find colors is https://htmlcolorcodes.com/). Pressing "OK" on the color entry prompt will add this custom color to your color palette for coloring events.

You can remove custom colors from your color palette by clicking on the extension icon in your browser's extension bar. This will open a small window where clicking on a color will remove it from the extension and your color palette.

NEW FEATURE: The window that was used for removing custom colors now contains a button to toggle between cloud and local mode. Originally, this extension only ran on cloud mode. This allowed your calendar colors to be synced across different computers and browsers. However, it also came with the limitation of max 512 events. Now, with the local mode, this limitation has been increased dramatically. Choose whichever option is better for you! You can toggle between the two as well, and they are managed independently.

Feedback greatly appreciated!

Note:
The colors are only available on the web version of Google Calendar.
The colors will only be consistent on one browser on a computer unless Google Chrome sync is enabled, in which case the colors will be tied to your Google Chrome profile. 

Newest Update (1/7/2023):
Fix a lot of things.                    

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

Όνομα More Colors for Calendar! More Colors for Calendar!
ID gmfgalicoeacemhkeakceigfeofbchod
Επίσημο URL https://chromewebstore.google.com/detail/more-colors-for-calendar/gmfgalicoeacemhkeakceigfeofbchod
Περιγραφή Adds more colors to Google Calendar!
Μέγεθος Αρχείου 37.97 KB
Αριθμός Εγκαταστάσεων 81,339
Τρέχουσα Έκδοση 1.1.2
Τελευταία Ενημέρωση 2023-01-24
Ημερομηνία Δημοσίευσης 2020-02-03
Αξιολόγηση 2.78/5 Συνολικά 214 Αξιολογήσεις
Προγραμματιστής Adam Chang
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "More Colors for Calendar!",
    "version": "1.1.2",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/calendar.google.com\/*"
            ],
            "js": [
                "\/scripts\/content.js"
            ]
        }
    ],
    "action": {
        "default_icon": "icon128.png",
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "scripts\/background.js"
    },
    "permissions": [
        "declarativeContent",
        "storage"
    ],
    "description": "Adds more colors to Google Calendar!"
}