GSuite Custom Toolbar
This extension being used to easily access Google (GSuite Products) tools with single click.
Qu'est-ce que GSuite Custom Toolbar ?
GSuite Custom Toolbar est une extension Chrome développée par Ghanshyam Katriya, et sa fonction principale est "This extension being used to easily access Google (GSuite Products) tools with single click.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension GSuite Custom Toolbar
Téléchargez les fichiers d'extension GSuite Custom Toolbar 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
GSuite Custom Toolbar is an extension being used to easily access Google tools (GSuite Products) tools with single click from Gmail. Changelog: [v0.2.0] - Fix issue of search not working in Gmail - Added Google Meet How to use : - Install this extension - Enable/Disable options for links - Use it GSuite is an registered trademark of Google. We are not affiliated with Google.
Informations de Base sur l'Extension
Nom | GSuite Custom Toolbar |
ID | mjcajbgmgplmelmnafihhbfhiecioaic |
URL Officiel | https://chromewebstore.google.com/detail/gsuite-custom-toolbar/mjcajbgmgplmelmnafihhbfhiecioaic |
Description | This extension being used to easily access Google (GSuite Products) tools with single click. |
Taille du Fichier | 81.85 KB |
Nombre d'Installations | 3,000 |
Version Actuelle | 0.2.0 |
Dernière Mise à Jour | 2020-05-05 |
Date de Publication | 2020-05-04 |
Développeur | Ghanshyam Katriya |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "GSuite Custom Toolbar", "description": "This extension being used to easily access Google (GSuite Products) tools with single click.", "version": "0.2.0", "options_page": "options.html", "browser_action": { "default_icon": "icon.png", "default_popup": "options.html", "default_title": "GSuite Custom Toolbar" }, "icons": { "16": "icon_16.png", "48": "icon_48.png", "128": "icon_128.png" }, "options_ui": { "page": "options.html", "chrome_style": true }, "background": { "scripts": [ "jquery.min.js", "actions.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*" ], "js": [ "jquery.min.js", "actions.js" ], "run_at": "document_end" } ], "permissions": [ "storage", "tabs", "https:\/\/mail.google.com\/*" ], "web_accessible_resources": [ "*" ] } |