Gmail Append HTML [Keyboard]
Allows the usage of HTML content in Gmail from the context menu and keyboard.
Gmail Append HTML [Keyboard] là gì?
Gmail Append HTML [Keyboard] là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "Allows the usage of HTML content in Gmail from the context menu and keyboard.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Gmail Append HTML [Keyboard]
Tải xuống các tệp mở rộng Gmail Append HTML [Keyboard] dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Gmail Append HTML [Keyboard] |
ID | ehkediiljoojmidehpemogkmfibcflka |
URL Chính Thức | https://chromewebstore.google.com/detail/gmail-append-html-keyboar/ehkediiljoojmidehpemogkmfibcflka |
Mô tả | Allows the usage of HTML content in Gmail from the context menu and keyboard. |
Kích Thước Tệp | 18.71 KB |
Số Lần Cài Đặt | 97 |
Phiên Bản Hiện Tại | 1.0.4 |
Cập Nhật Lần Cuối | 2019-05-24 |
Ngày Phát Hành | 2019-05-24 |
Nhà Phát Triển | Unknown |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" } } } |