Old Google Logos And Icons

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

Was ist Old Google Logos And Icons?

Old Google Logos And Icons ist eine Chrome-Erweiterung, die von omniZero entwickelt wurde, und ihr Hauptmerkmal ist "Brings back old Google apps logos and icons for Gmail, Drive, Calendar and Meet.".

Erweiterungsscreenshots

screenshot

Old Google Logos And Icons-Erweiterungs-CRX-Datei herunterladen

Laden Sie Old Google Logos And Icons-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Old Google Logos And Icons Old Google Logos And Icons
ID jfhmfocmbambgopbjhkdncafdlkohmnm
Offizielle URL https://chromewebstore.google.com/detail/old-google-logos-and-icon/jfhmfocmbambgopbjhkdncafdlkohmnm
Beschreibung Brings back old Google apps logos and icons for Gmail, Drive, Calendar and Meet.
Dateigröße 344 KB
Installationsanzahl 2,444
Aktuelle Version 1.1.4
Letztes Update 2023-08-24
Veröffentlichungsdatum 2020-11-11
Bewertung 3.76/5 Insgesamt 17 Bewertungen
Entwickler omniZero
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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
}