Restore old Google icons

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

Was ist Restore old Google icons?

Restore old Google icons ist eine Chrome-Erweiterung, die von claudiopostinghel entwickelt wurde, und ihr Hauptmerkmal ist "Restore the old icon on Meet, Calendar, Gmail etc to make tabs more recognizable".

Erweiterungsscreenshots

screenshot

Restore old Google icons-Erweiterungs-CRX-Datei herunterladen

Laden Sie Restore old Google 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

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

Super simple :) nothing more.                    

Grundlegende Informationen zur Erweiterung

Name Restore old Google icons Restore old Google icons
ID iellnmonjokmoagdlggagdmfjgpiahmb
Offizielle URL https://chromewebstore.google.com/detail/restore-old-google-icons/iellnmonjokmoagdlggagdmfjgpiahmb
Beschreibung Restore the old icon on Meet, Calendar, Gmail etc to make tabs more recognizable
Dateigröße 53.17 KB
Installationsanzahl 10,498
Aktuelle Version 0.2
Letztes Update 2020-11-06
Veröffentlichungsdatum 2020-11-02
Bewertung 4.40/5 Insgesamt 100 Bewertungen
Entwickler claudiopostinghel
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://restoreoldicons.xyz/
Unterstützte Sprachen 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
    }
}