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开发的Chrome扩展程序,该扩展的主要功能是“Allows the usage of HTML content in Gmail from the context menu and keyboard.”。
扩展截图
下载Gmail Append HTML [Keyboard]扩展crx文件
下载Gmail Append HTML [Keyboard]扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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. 扩展基本信息
| 名称 | |
| 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"
}
}
} | |