Gmail Append HTML [Keyboard]
Allows the usage of HTML content in Gmail from the context menu and keyboard.
Gmail Append HTML [Keyboard] क्या है?
Gmail Append HTML [Keyboard] Unknown द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows the usage of HTML content in Gmail from the context menu and keyboard."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Gmail Append HTML [Keyboard] एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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.
एक्सटेंशन की मूल जानकारी
नाम | Gmail Append HTML [Keyboard] |
ID | ehkediiljoojmidehpemogkmfibcflka |
आधिकारिक URL | https://chromewebstore.google.com/detail/gmail-append-html-keyboar/ehkediiljoojmidehpemogkmfibcflka |
विवरण | Allows the usage of HTML content in Gmail from the context menu and keyboard. |
फ़ाइल का आकार | 18.71 KB |
स्थापना संख्या | 97 |
वर्तमान संस्करण | 1.0.4 |
अंतिम अपडेट | 2019-05-24 |
प्रकाशन तिथि | 2019-05-24 |
डेवलपर | Unknown |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | 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" } } } |