Gmail Append HTML [Keyboard]
Allows the usage of HTML content in Gmail from the context menu and keyboard.
Cos'è Gmail Append HTML [Keyboard]?
Gmail Append HTML [Keyboard] è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "Allows the usage of HTML content in Gmail from the context menu and keyboard.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Gmail Append HTML [Keyboard]
Scarica i file di estensione Gmail Append HTML [Keyboard] in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Gmail Append HTML [Keyboard] |
ID | ehkediiljoojmidehpemogkmfibcflka |
URL Ufficiale | https://chromewebstore.google.com/detail/gmail-append-html-keyboar/ehkediiljoojmidehpemogkmfibcflka |
Descrizione | Allows the usage of HTML content in Gmail from the context menu and keyboard. |
Dimensione del File | 18.71 KB |
Conteggio Installazioni | 97 |
Versione Corrente | 1.0.4 |
Ultimo Aggiornamento | 2019-05-24 |
Data di Pubblicazione | 2019-05-24 |
Sviluppatore | Unknown |
Tipo di Pagamento | free |
Lingue Supportate | 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" } } } |