Switch between Multiple Google Accounts

Keyboard shorcuts to Switch between Multiple Google Accounts

Τι είναι το Switch between Multiple Google Accounts;

Το Switch between Multiple Google Accounts είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Aditya, και η κύρια λειτουργία του είναι "Keyboard shorcuts to Switch between Multiple Google Accounts".

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

screenshot

Λήψη αρχείου CRX της επέκτασης Switch between Multiple Google Accounts

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

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

                        Keyboard shortcuts to Switch between different accounts of various Google products.

You can use any one of the below two shortcuts (If one of the below doesn't work or is assigned to other plugin you can use the other one ) -

1) Press ALT+ 1, ALT + 2, .... ALT+9 to switch to first, second, third.. google account.
2) Press SHIFT+ 1, SHIFT + 2, ... SHIFT +9 to switch to first, second, third.. google 
account.

It works on:-
Gmail
Drive
Meet
Calendar
Docs
Sheets
Slides
Forms
Keep
Photos
Maps                    

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

Όνομα Switch between Multiple Google Accounts Switch between Multiple Google Accounts
ID nlmcbmeicbooompjafliaoiodifdhnpd
Επίσημο URL https://chromewebstore.google.com/detail/switch-between-multiple-g/nlmcbmeicbooompjafliaoiodifdhnpd
Περιγραφή Keyboard shorcuts to Switch between Multiple Google Accounts
Μέγεθος Αρχείου 21.48 KB
Αριθμός Εγκαταστάσεων 25
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2022-06-23
Ημερομηνία Δημοσίευσης 2022-01-05
Αξιολόγηση 3.75/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής Aditya
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Switch between Multiple Google Accounts",
    "description": "Keyboard shorcuts to Switch between Multiple Google Accounts",
    "version": "1.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "tabs"
    ],
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "key_press.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    }
}