Gmail Append HTML [Keyboard]

Allows the usage of HTML content in Gmail from the context menu and keyboard.

Qu'est-ce que Gmail Append HTML [Keyboard] ?

Gmail Append HTML [Keyboard] est une extension Chrome développée par Unknown, et sa fonction principale est "Allows the usage of HTML content in Gmail from the context menu and keyboard.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Gmail Append HTML [Keyboard]

Téléchargez les fichiers d'extension Gmail Append HTML [Keyboard] au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Gmail HTML Append Extension
-----------------------------

Forked from https://github.com/erichlotto/gmail-html-email
All thanks go to @erichlotto !

This adds the ability to paste via keyboard shorcut, making the whole thing a bit smoother for our use case. 

The default keyboard shortcut is 'CTRL+SHIFT+X' - so that you can Cut the HTML (CTRL+X) and immediately paste it as rendered HTML by just adding the shift to the previous keyboard shortcut.                    

Informations de Base sur l'Extension

Nom Gmail Append HTML [Keyboard] Gmail Append HTML [Keyboard]
ID ehkediiljoojmidehpemogkmfibcflka
URL Officiel https://chromewebstore.google.com/detail/gmail-append-html-keyboar/ehkediiljoojmidehpemogkmfibcflka
Description Allows the usage of HTML content in Gmail from the context menu and keyboard.
Taille du Fichier 18.71 KB
Nombre d'Installations 97
Version Actuelle 1.0.4
Dernière Mise à Jour 2019-05-24
Date de Publication 2019-05-24
Développeur Unknown
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gmail Append HTML [Keyboard]",
    "description": "Allows the usage of HTML content in Gmail from the context menu and keyboard.",
    "version": "1.0.4",
    "permissions": [
        "contextMenus",
        "clipboardRead"
    ],
    "manifest_version": 2,
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/mail.google.com\/*",
                "https:\/\/mail.google.com\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "commands": {
        "html_paste": {
            "suggested_key": {
                "default": "Ctrl+Shift+X"
            },
            "description": "Execute Paste as HTML"
        }
    }
}