Restore old Google icons

Restore the old icon on Meet, Calendar and Gmail 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 and Gmail 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 ggjnppcaflhlajblielgecndhfdolead
Offizielle URL https://chromewebstore.google.com/detail/restore-old-google-icons/ggjnppcaflhlajblielgecndhfdolead
Beschreibung Restore the old icon on Meet, Calendar and Gmail to make tabs more recognizable
Dateigröße 182 KB
Installationsanzahl 222
Aktuelle Version 0.1
Letztes Update 2020-11-03
Veröffentlichungsdatum 2020-11-02
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler claudiopostinghel
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite http://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 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
    }
}