Restore old Google icons

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

Vad är Restore old Google icons?

Restore old Google icons är en Chrome-tillägg utvecklad av claudiopostinghel, och dess huvudfunktion är "Restore the old icon on Meet, Calendar, Gmail etc to make tabs more recognizable".

Tilläggsskärmbilder

screenshot

Ladda ner Restore old Google icons-förlängningens CRX-fil

Ladda ner Restore old Google icons-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Super simple :) nothing more.                    

Grundläggande Information om Tillägg

Namn Restore old Google icons Restore old Google icons
ID iellnmonjokmoagdlggagdmfjgpiahmb
Officiell webbadress https://chromewebstore.google.com/detail/restore-old-google-icons/iellnmonjokmoagdlggagdmfjgpiahmb
Beskrivning Restore the old icon on Meet, Calendar, Gmail etc to make tabs more recognizable
Filstorlek 53.17 KB
Antal Installationer 10,498
Aktuell Version 0.2
Senast Uppdaterad 2020-11-06
Publiceringsdatum 2020-11-02
Betyg 4.40/5 Totalt 100 Betyg
Utvecklare claudiopostinghel
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://restoreoldicons.xyz/
Stödda Språk 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
    }
}