GSuite Custom Toolbar

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

Τι είναι το GSuite Custom Toolbar;

Το GSuite Custom Toolbar είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Ghanshyam Katriya, και η κύρια λειτουργία του είναι "This extension being used to easily access Google (GSuite Products) tools with single click.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης GSuite Custom Toolbar

Λήψη αρχείων επέκτασης GSuite Custom Toolbar σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα GSuite Custom Toolbar GSuite Custom Toolbar
ID mjcajbgmgplmelmnafihhbfhiecioaic
Επίσημο URL https://chromewebstore.google.com/detail/gsuite-custom-toolbar/mjcajbgmgplmelmnafihhbfhiecioaic
Περιγραφή This extension being used to easily access Google (GSuite Products) tools with single click.
Μέγεθος Αρχείου 81.85 KB
Αριθμός Εγκαταστάσεων 3,000
Τρέχουσα Έκδοση 0.2.0
Τελευταία Ενημέρωση 2020-05-05
Ημερομηνία Δημοσίευσης 2020-05-04
Προγραμματιστής Ghanshyam Katriya
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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": [
        "*"
    ]
}