Restore old Google icons

Restore the old icon on Meet, Calendar and Gmail to make tabs more recognizable

Cos'è Restore old Google icons?

Restore old Google icons è un'estensione di Chrome sviluppata da claudiopostinghel, e la sua funzione principale è "Restore the old icon on Meet, Calendar and Gmail to make tabs more recognizable".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Restore old Google icons

Scarica i file di estensione Restore old Google icons in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        This extension restore the old icon on Meet, Calendar and Gmail to make tabs more recognizable. That increases accessibility.

Super simple :) nothing more.                    

Informazioni di Base sull'Estensione

Nome Restore old Google icons Restore old Google icons
ID ggjnppcaflhlajblielgecndhfdolead
URL Ufficiale https://chromewebstore.google.com/detail/restore-old-google-icons/ggjnppcaflhlajblielgecndhfdolead
Descrizione Restore the old icon on Meet, Calendar and Gmail to make tabs more recognizable
Dimensione del File 182 KB
Conteggio Installazioni 222
Versione Corrente 0.1
Ultimo Aggiornamento 2020-11-03
Data di Pubblicazione 2020-11-02
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore claudiopostinghel
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://restoreoldicons.xyz/
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Restore old Google icons",
    "description": "Restore the old icon on Meet, Calendar and Gmail to make tabs more recognizable",
    "version": "0.1",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/calendar.google.com\/*"
            ],
            "js": [
                "calendar_script.js"
            ]
        },
        {
            "matches": [
                "*:\/\/docs.google.com\/*"
            ],
            "js": [
                "docs_script.js"
            ]
        },
        {
            "matches": [
                "*:\/\/drive.google.com\/*"
            ],
            "js": [
                "drive_script.js"
            ]
        },
        {
            "matches": [
                "*:\/\/mail.google.com\/*"
            ],
            "js": [
                "gmail_script.js"
            ]
        },
        {
            "matches": [
                "*:\/\/meet.google.com\/*"
            ],
            "js": [
                "meet_script.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon16.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    }
}