Restore old Google icons

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

Co to jest Restore old Google icons?

Restore old Google icons to rozszerzenie Chrome opracowane przez claudiopostinghel, a jego główną funkcją jest „Restore the old icon on Meet, Calendar, Gmail etc to make tabs more recognizable”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Restore old Google icons

Pobierz pliki rozszerzeń Restore old Google icons w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Super simple :) nothing more.                    

Podstawowe informacje o rozszerzeniu

Nazwa Restore old Google icons Restore old Google icons
ID iellnmonjokmoagdlggagdmfjgpiahmb
Oficjalny URL https://chromewebstore.google.com/detail/restore-old-google-icons/iellnmonjokmoagdlggagdmfjgpiahmb
Opis Restore the old icon on Meet, Calendar, Gmail etc to make tabs more recognizable
Rozmiar pliku 53.17 KB
Liczba instalacji 10,498
Aktualna Wersja 0.2
Ostatnia Aktualizacja 2020-11-06
Data Publikacji 2020-11-02
Ocena 4.40/5 Łącznie 100 Oceny
Deweloper claudiopostinghel
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://restoreoldicons.xyz/
Obsługiwane Języki 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
    }
}