Restore old Google icons

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

Τι είναι το Restore old Google icons;

Το Restore old Google icons είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον claudiopostinghel, και η κύρια λειτουργία του είναι "Restore the old icon on Meet, Calendar, Gmail etc to make tabs more recognizable".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Restore old Google icons

Λήψη αρχείων επέκτασης Restore old Google icons σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

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

Super simple :) nothing more.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Restore old Google icons Restore old Google icons
ID iellnmonjokmoagdlggagdmfjgpiahmb
Επίσημο URL https://chromewebstore.google.com/detail/restore-old-google-icons/iellnmonjokmoagdlggagdmfjgpiahmb
Περιγραφή Restore the old icon on Meet, Calendar, Gmail etc to make tabs more recognizable
Μέγεθος Αρχείου 53.17 KB
Αριθμός Εγκαταστάσεων 10,498
Τρέχουσα Έκδοση 0.2
Τελευταία Ενημέρωση 2020-11-06
Ημερομηνία Δημοσίευσης 2020-11-02
Αξιολόγηση 4.40/5 Συνολικά 100 Αξιολογήσεις
Προγραμματιστής claudiopostinghel
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://restoreoldicons.xyz/
Υποστηριζόμενες Γλώσσες 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
    }
}