Restore old Google icons

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

Co je Restore old Google icons?

Restore old Google icons je rozšíření Chrome vyvinuté claudiopostinghel, a jeho hlavní funkcí je „Restore the old icon on Meet, Calendar, Gmail etc to make tabs more recognizable“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Restore old Google icons

Stáhněte si soubory rozšíření Restore old Google icons ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Super simple :) nothing more.                    

Základní Informace o Rozšíření

Název Restore old Google icons Restore old Google icons
ID iellnmonjokmoagdlggagdmfjgpiahmb
Oficiální URL https://chromewebstore.google.com/detail/restore-old-google-icons/iellnmonjokmoagdlggagdmfjgpiahmb
Popis Restore the old icon on Meet, Calendar, Gmail etc to make tabs more recognizable
Velikost souboru 53.17 KB
Počet instalací 10,498
Aktuální Verze 0.2
Poslední Aktualizace 2020-11-06
Datum Vydání 2020-11-02
Hodnocení 4.40/5 Celkem 100 Hodnocení
Vývojář claudiopostinghel
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://restoreoldicons.xyz/
Podporované Jazyky 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
    }
}