Restore old Google icons

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

Apa itu Restore old Google icons?

Restore old Google icons adalah ekstensi Chrome yang dikembangkan oleh claudiopostinghel, dan fitur utamanya adalah "Restore the old icon on Meet, Calendar, Gmail etc to make tabs more recognizable".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Restore old Google icons

Unduh file ekstensi Restore old Google icons dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Super simple :) nothing more.                    

Informasi Dasar Ekstensi

Nama Restore old Google icons Restore old Google icons
ID iellnmonjokmoagdlggagdmfjgpiahmb
URL Resmi https://chromewebstore.google.com/detail/restore-old-google-icons/iellnmonjokmoagdlggagdmfjgpiahmb
Deskripsi Restore the old icon on Meet, Calendar, Gmail etc to make tabs more recognizable
Ukuran File 53.17 KB
Jumlah Instalasi 10,498
Versi Saat Ini 0.2
Terakhir Diperbarui 2020-11-06
Tanggal Publikasi 2020-11-02
Penilaian 4.40/5 Total 100 Penilaian
Pengembang claudiopostinghel
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://restoreoldicons.xyz/
Bahasa yang Didukung 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
    }
}