Gmail Append HTML [Keyboard]
Allows the usage of HTML content in Gmail from the context menu and keyboard.
¿Qué es Gmail Append HTML [Keyboard]?
Gmail Append HTML [Keyboard] es una extensión de Chrome desarrollada por Unknown, y su función principal es "Allows the usage of HTML content in Gmail from the context menu and keyboard.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Gmail Append HTML [Keyboard]
Descarga archivos de extensión Gmail Append HTML [Keyboard] en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Gmail Append HTML [Keyboard] |
ID | ehkediiljoojmidehpemogkmfibcflka |
URL Oficial | https://chromewebstore.google.com/detail/gmail-append-html-keyboar/ehkediiljoojmidehpemogkmfibcflka |
Descripción | Allows the usage of HTML content in Gmail from the context menu and keyboard. |
Tamaño del Archivo | 18.71 KB |
Cantidad de Instalaciones | 97 |
Versión Actual | 1.0.4 |
Última Actualización | 2019-05-24 |
Fecha de Publicación | 2019-05-24 |
Desarrollador | Unknown |
Tipo de Pago | free |
Idiomas Soportados | 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" } } } |