GSuite Custom Toolbar

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

Was ist GSuite Custom Toolbar?

GSuite Custom Toolbar ist eine Chrome-Erweiterung, die von Ghanshyam Katriya entwickelt wurde, und ihr Hauptmerkmal ist "This extension being used to easily access Google (GSuite Products) tools with single click.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

GSuite Custom Toolbar-Erweiterungs-CRX-Datei herunterladen

Laden Sie GSuite Custom Toolbar-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name GSuite Custom Toolbar GSuite Custom Toolbar
ID mjcajbgmgplmelmnafihhbfhiecioaic
Offizielle URL https://chromewebstore.google.com/detail/gsuite-custom-toolbar/mjcajbgmgplmelmnafihhbfhiecioaic
Beschreibung This extension being used to easily access Google (GSuite Products) tools with single click.
Dateigröße 81.85 KB
Installationsanzahl 3,000
Aktuelle Version 0.2.0
Letztes Update 2020-05-05
Veröffentlichungsdatum 2020-05-04
Entwickler Ghanshyam Katriya
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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": [
        "*"
    ]
}