G-Switcher
Allows a user to easily switch between Google accounts
Qu'est-ce que G-Switcher ?
G-Switcher est une extension Chrome développée par https://skyler.cc, et sa fonction principale est "Allows a user to easily switch between Google accounts".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension G-Switcher
Téléchargez les fichiers d'extension G-Switcher au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
G-Switcher is a web extension that makes it easy to switch between Google accounts. This is especially useful for switching between a personal, and school/work account. Oftentimes our personal accounts are set as the default account, while we have our school/work account as secondary accounts. When working, it's often annoying to have to continually use Google's UI to switch to your account when going between Gmail, Google Classroom, Google Drive, and other Google services. G-Switcher allows us to change our default Google account with only 1 click. Simply click the extension icon in your browser bar to cycle between accounts. After cycling through all of your accounts, you can click again to disable the extension, and again to re-enable it and restart on your first account. This extension collects NO personal data.
Informations de Base sur l'Extension
Nom | G-Switcher |
ID | fkpnpedmgcpjnmglbjckfjhnodoacnan |
URL Officiel | https://chromewebstore.google.com/detail/g-switcher/fkpnpedmgcpjnmglbjckfjhnodoacnan |
Description | Allows a user to easily switch between Google accounts |
Taille du Fichier | 110 KB |
Nombre d'Installations | 58 |
Version Actuelle | 1.1 |
Dernière Mise à Jour | 2022-01-02 |
Date de Publication | 2020-09-20 |
Évaluation | 4.20/5 Total 5 Évaluations |
Développeur | https://skyler.cc |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://skyler.cc/projects/g-switcher |
URL de la Page d'Aide | https://skyler.cc/contact |
Langues Prises en Charge | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "G-Switcher", "version": "1.1", "description": "Allows a user to easily switch between Google accounts", "icons": { "48": "icon.png" }, "browser_action": { "default_icon": "icon.png", "default_title": "G-Switcher" }, "background": { "scripts": [ "action.js", "install.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*.google.com\/*" ], "js": [ "swap.js" ] } ], "permissions": [ "storage" ], "options_ui": { "page": "options.html" } } |