Gmail HTML Editor
Edit Gmail emails as HTML.
什么是Gmail HTML Editor?
Gmail HTML Editor是由Brandon Fowler开发的Chrome扩展程序,该扩展的主要功能是“Edit Gmail emails as HTML.”。
扩展截图
下载Gmail HTML Editor扩展crx文件
下载Gmail HTML Editor扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Easily edit emails you're composing in Gmail as HTML, allowing for a whole new level of customizability. Adds a button to Gmail "New Message" popup to allow emails you're composing to be edited as HTML. The extension also works in the "mailto" screen.
扩展基本信息
名称 | Gmail HTML Editor |
ID | ikolpoonlhkhbkkmhcpnmhpdgagjjhmp |
官方URL | https://chromewebstore.google.com/detail/gmail-html-editor/ikolpoonlhkhbkkmhcpnmhpdgagjjhmp |
简介 | Edit Gmail emails as HTML. |
文件大小 | 152 KB |
安装次数 | 5,000 |
当前版本 | 1.2.0 |
更新时间 | 2023-01-03 |
上架时间 | 2019-11-30 |
评分 | 3.44/5 共9次评分 |
开发者 | Brandon Fowler |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Gmail HTML Editor", "version": "1.2.0", "description": "Edit Gmail emails as HTML.", "host_permissions": [ "https:\/\/mail.google.com\/" ], "web_accessible_resources": [ { "resources": [ "assets\/edit.png", "iframe.html" ], "matches": [ "https:\/\/mail.google.com\/*" ] } ], "icons": { "128": "icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*" ], "js": [ "content.js" ], "css": [ "content.css" ], "run_at": "document_end" } ], "manifest_version": 3 } |