Restore old Google icons

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

Wat is Restore old Google icons?

Restore old Google icons is een Chrome-extensie ontwikkeld door claudiopostinghel, en de belangrijkste functie is "Restore the old icon on Meet, Calendar, Gmail etc to make tabs more recognizable".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Restore old Google icons

Download Restore old Google icons-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Super simple :) nothing more.                    

Basisinformatie over de Extensie

Naam Restore old Google icons Restore old Google icons
ID iellnmonjokmoagdlggagdmfjgpiahmb
Officiële URL https://chromewebstore.google.com/detail/restore-old-google-icons/iellnmonjokmoagdlggagdmfjgpiahmb
Beschrijving Restore the old icon on Meet, Calendar, Gmail etc to make tabs more recognizable
Bestandsgrootte 53.17 KB
Aantal Installaties 10,498
Huidige Versie 0.2
Laatst Bijgewerkt 2020-11-06
Publicatiedatum 2020-11-02
Beoordeling 4.40/5 Totaal 100 Beoordelingen
Ontwikkelaar claudiopostinghel
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://restoreoldicons.xyz/
Ondersteunde Talen 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, Gmail etc to make tabs more recognizable",
    "version": "0.2",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/calendar.google.com\/*"
            ],
            "js": [
                "calendar_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"
            ]
        }
    ],
    "permissions": [
        "*:\/\/calendar.google.com\/*",
        "*:\/\/docs.google.com\/*",
        "*:\/\/drive.google.com\/*",
        "*:\/\/mail.google.com\/*",
        "*:\/\/meet.google.com\/*"
    ],
    "browser_action": {
        "default_icon": "icon16.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    }
}