GSuite Custom Toolbar

This extension being used to easily access Google (GSuite Products) tools with single click.

Cos'è GSuite Custom Toolbar?

GSuite Custom Toolbar è un'estensione di Chrome sviluppata da Ghanshyam Katriya, e la sua funzione principale è "This extension being used to easily access Google (GSuite Products) tools with single click.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione GSuite Custom Toolbar

Scarica i file di estensione GSuite Custom Toolbar in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome GSuite Custom Toolbar GSuite Custom Toolbar
ID mjcajbgmgplmelmnafihhbfhiecioaic
URL Ufficiale https://chromewebstore.google.com/detail/gsuite-custom-toolbar/mjcajbgmgplmelmnafihhbfhiecioaic
Descrizione This extension being used to easily access Google (GSuite Products) tools with single click.
Dimensione del File 81.85 KB
Conteggio Installazioni 3,000
Versione Corrente 0.2.0
Ultimo Aggiornamento 2020-05-05
Data di Pubblicazione 2020-05-04
Sviluppatore Ghanshyam Katriya
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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": [
        "*"
    ]
}