Old Google Logos And Icons

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

Qu'est-ce que Old Google Logos And Icons ?

Old Google Logos And Icons est une extension Chrome développée par omniZero, et sa fonction principale est "Brings back old Google apps logos and icons for Gmail, Drive, Calendar and Meet.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Old Google Logos And Icons

Téléchargez les fichiers d'extension Old Google Logos And Icons au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Old Google Logos And Icons Old Google Logos And Icons
ID jfhmfocmbambgopbjhkdncafdlkohmnm
URL Officiel https://chromewebstore.google.com/detail/old-google-logos-and-icon/jfhmfocmbambgopbjhkdncafdlkohmnm
Description Brings back old Google apps logos and icons for Gmail, Drive, Calendar and Meet.
Taille du Fichier 344 KB
Nombre d'Installations 2,444
Version Actuelle 1.1.4
Dernière Mise à Jour 2023-08-24
Date de Publication 2020-11-11
Évaluation 3.76/5 Total 17 Évaluations
Développeur omniZero
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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
}