Gmail HTML Editor

Edit Gmail emails as HTML.

Что такое Gmail HTML Editor?

Gmail HTML Editor - это расширение Chrome, разработанное Brandon Fowler, и его основная функция - "Edit Gmail emails as HTML.".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        Easily edit emails you're composing in Gmail as HTML, allowing for a whole new level of customizability.

Adds a button to Gmail "New Message" popup to allow emails you're composing to be edited as HTML.

The extension also works in the "mailto" screen.                    

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

Название Gmail HTML Editor Gmail HTML Editor
ID ikolpoonlhkhbkkmhcpnmhpdgagjjhmp
Официальный URL https://chromewebstore.google.com/detail/gmail-html-editor/ikolpoonlhkhbkkmhcpnmhpdgagjjhmp
Описание Edit Gmail emails as HTML.
Размер файла 152 KB
Количество установок 5,000
Текущая Версия 1.2.0
Последнее Обновление 2023-01-03
Дата публикации 2019-11-30
Рейтинг 3.44/5 Всего 9 оценок
Разработчик Brandon Fowler
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gmail HTML Editor",
    "version": "1.2.0",
    "description": "Edit Gmail emails as HTML.",
    "host_permissions": [
        "https:\/\/mail.google.com\/"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/edit.png",
                "iframe.html"
            ],
            "matches": [
                "https:\/\/mail.google.com\/*"
            ]
        }
    ],
    "icons": {
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ],
            "run_at": "document_end"
        }
    ],
    "manifest_version": 3
}