Custom Calendar Background

Adds background images to Google Calendar

Τι είναι το Custom Calendar Background;

Το Custom Calendar Background είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://useit.today, και η κύρια λειτουργία του είναι "Adds background images to Google Calendar".

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Modify the Google Calendar UI to include full-page background images or colors.
Use your own images, or purchase from sets of provided themes.

For support, see: https://github.com/padster/CalendarThemeExtension/issues                    

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

Όνομα Custom Calendar Background Custom Calendar Background
ID acjecbgflnhmeldadcbblhfdimhifpki
Επίσημο URL https://chromewebstore.google.com/detail/custom-calendar-backgroun/acjecbgflnhmeldadcbblhfdimhifpki
Περιγραφή Adds background images to Google Calendar
Μέγεθος Αρχείου 42 KB
Αριθμός Εγκαταστάσεων 91,791
Τρέχουσα Έκδοση 2.0.7
Τελευταία Ενημέρωση 2024-02-27
Ημερομηνία Δημοσίευσης 2019-01-02
Αξιολόγηση 3.71/5 Συνολικά 94 Αξιολογήσεις
Προγραμματιστής https://useit.today
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής in_app
Ιστότοπος Επέκτασης https://github.com/padster/CalendarThemeExtension
Διεύθυνση URL της Σελίδας Βοήθειας https://calendar.useit.today/help
URL της Σελίδας Πολιτικής Απορρήτου https://calendar.useit.today/legal
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Custom Calendar Background",
    "version": "2.0.7",
    "description": "Adds background images to Google Calendar",
    "icons": {
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/calendar.google.com\/calendar\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "identity",
        "identity.email"
    ],
    "options_page": "options.html",
    "web_accessible_resources": [
        {
            "resources": [
                "options.html"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_security_policy": []
}