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": [
        "*"
    ]
}