Restore old Google icons

Restore the old icon on Meet, Calendar and Gmail 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 and Gmail 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 ggjnppcaflhlajblielgecndhfdolead
Oficjalny URL https://chromewebstore.google.com/detail/restore-old-google-icons/ggjnppcaflhlajblielgecndhfdolead
Opis Restore the old icon on Meet, Calendar and Gmail to make tabs more recognizable
Rozmiar pliku 182 KB
Liczba instalacji 222
Aktualna Wersja 0.1
Ostatnia Aktualizacja 2020-11-03
Data Publikacji 2020-11-02
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper claudiopostinghel
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia http://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 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
    }
}