Restore old Google icons

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

Wat is Restore old Google icons?

Restore old Google icons is een Chrome-extensie ontwikkeld door claudiopostinghel, en de belangrijkste functie is "Restore the old icon on Meet, Calendar and Gmail to make tabs more recognizable".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Restore old Google icons

Download Restore old Google icons-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Super simple :) nothing more.                    

Basisinformatie over de Extensie

Naam Restore old Google icons Restore old Google icons
ID ggjnppcaflhlajblielgecndhfdolead
Officiële URL https://chromewebstore.google.com/detail/restore-old-google-icons/ggjnppcaflhlajblielgecndhfdolead
Beschrijving Restore the old icon on Meet, Calendar and Gmail to make tabs more recognizable
Bestandsgrootte 182 KB
Aantal Installaties 222
Huidige Versie 0.1
Laatst Bijgewerkt 2020-11-03
Publicatiedatum 2020-11-02
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar claudiopostinghel
E-mail [email protected]
Betalingswijze free
Extensiewebsite http://restoreoldicons.xyz/
Ondersteunde Talen 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
    }
}