GSuite Custom Toolbar

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

O que é GSuite Custom Toolbar?

GSuite Custom Toolbar é uma extensão do Chrome desenvolvida por Ghanshyam Katriya, e sua principal característica é "This extension being used to easily access Google (GSuite Products) tools with single click.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão GSuite Custom Toolbar

Baixe arquivos de extensão GSuite Custom Toolbar no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome GSuite Custom Toolbar GSuite Custom Toolbar
ID mjcajbgmgplmelmnafihhbfhiecioaic
URL Oficial https://chromewebstore.google.com/detail/gsuite-custom-toolbar/mjcajbgmgplmelmnafihhbfhiecioaic
Descrição This extension being used to easily access Google (GSuite Products) tools with single click.
Tamanho do Arquivo 81.85 KB
Contagem de Instalações 3,000
Versão Atual 0.2.0
Última Atualização 2020-05-05
Data de Publicação 2020-05-04
Desenvolvedor Ghanshyam Katriya
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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": [
        "*"
    ]
}