Old Google Logos And Icons

Brings back old Google apps logos and icons for Gmail, Drive, Calendar and Meet.

Τι είναι το Old Google Logos And Icons;

Το Old Google Logos And Icons είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον omniZero, και η κύρια λειτουργία του είναι "Brings back old Google apps logos and icons for Gmail, Drive, Calendar and Meet.".

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

screenshot

Λήψη αρχείου CRX της επέκτασης Old Google Logos And Icons

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

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

                        Replaces new Google Workspace logos and icons with old design. Changes are applied to the logo in the top-left corner of a page as well as to the favicon (tab icon).

Includes dynamically updated calendar icons based on current date.                    

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

Όνομα Old Google Logos And Icons Old Google Logos And Icons
ID jfhmfocmbambgopbjhkdncafdlkohmnm
Επίσημο URL https://chromewebstore.google.com/detail/old-google-logos-and-icon/jfhmfocmbambgopbjhkdncafdlkohmnm
Περιγραφή Brings back old Google apps logos and icons for Gmail, Drive, Calendar and Meet.
Μέγεθος Αρχείου 344 KB
Αριθμός Εγκαταστάσεων 2,444
Τρέχουσα Έκδοση 1.1.4
Τελευταία Ενημέρωση 2023-08-24
Ημερομηνία Δημοσίευσης 2020-11-11
Αξιολόγηση 3.76/5 Συνολικά 17 Αξιολογήσεις
Προγραμματιστής omniZero
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Old Google Logos And Icons",
    "version": "1.1.4",
    "description": "Brings back old Google apps logos and icons for Gmail, Drive, Calendar and Meet.",
    "permissions": [],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/16.png",
            "32": "images\/32.png",
            "48": "images\/48.png",
            "128": "images\/128.png"
        }
    },
    "icons": {
        "16": "images\/16.png",
        "32": "images\/32.png",
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/mail.google.com\/*",
                "*:\/\/drive.google.com\/*",
                "*:\/\/calendar.google.com\/*",
                "*:\/\/meet.google.com\/*"
            ],
            "js": [
                "main.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/*"
            ],
            "matches": [
                "*:\/\/mail.google.com\/*",
                "*:\/\/drive.google.com\/*",
                "*:\/\/calendar.google.com\/*",
                "*:\/\/meet.google.com\/*"
            ]
        }
    ],
    "manifest_version": 3
}