Gmail Button

A simple toolbar icon to open Gmail

Что такое Gmail Button?

Gmail Button - это расширение Chrome, разработанное Valtteri Laitinen, и его основная функция - "A simple toolbar icon to open Gmail".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Gmail Button

Скачайте файлы расширений Gmail Button в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        (This extension is not affiliated with Google. “Gmail” is a trademark of Google LLC.)                    

Основная информация о расширении

Название Gmail Button Gmail Button
ID afdienfgfeojjnmobgakodmkiebhfcap
Официальный URL https://chromewebstore.google.com/detail/gmail-button/afdienfgfeojjnmobgakodmkiebhfcap
Описание A simple toolbar icon to open Gmail
Размер файла 5.44 KB
Количество установок 5,228
Текущая Версия 3.0.0
Последнее Обновление 2023-07-19
Дата публикации 2019-10-13
Рейтинг 3.80/5 Всего 5 оценок
Разработчик Valtteri Laitinen
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/valtlai/gmail-button
URL страницы помощи https://github.com/valtlai/gmail-button/discussions/categories/q-a
URL страницы политики конфиденциальности https://github.com/valtlai/gmail-button/blob/main/PRIVACY.md
Поддерживаемые языки en,fi
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "minimum_chrome_version": "100",
    "name": "__MSG_name__",
    "version": "3.0.0",
    "description": "__MSG_desc__",
    "default_locale": "en",
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "contextMenus",
        "storage"
    ],
    "optional_permissions": [
        "tabs"
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "action": {
        "default_icon": "icon.png",
        "default_title": "__MSG_open__"
    }
}