Re:format Gmail inline replies
Reply to long emails point-by-point. Highlight text, press a button, and the quote shows up in your compose window.
什么是Re:format Gmail inline replies?
Re:format Gmail inline replies是由Value Add开发的Chrome扩展程序,该扩展的主要功能是“Reply to long emails point-by-point. Highlight text, press a button, and the quote shows up in your compose window.”。
扩展截图
下载Re:format Gmail inline replies扩展crx文件
下载Re:format Gmail inline replies扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
We add a button to your compose window. When replying, you can highlight text you want to respond to, push our button, and we'll add the quoted text right in your compose view. Also, you might like my other extension, which lets you take notes from your tab: https://chrome.google.com/webstore/detail/jotter/icdbglcdnjonofjpcfpcgpjjchokgnjl
扩展基本信息
名称 | Re:format Gmail inline replies |
ID | akndolpagcjaolannkpophkacklomagp |
官方URL | https://chromewebstore.google.com/detail/reformat-gmail-inline-rep/akndolpagcjaolannkpophkacklomagp |
简介 | Reply to long emails point-by-point. Highlight text, press a button, and the quote shows up in your compose window. |
文件大小 | 27.42 KB |
安装次数 | 1,497 |
当前版本 | 0.0.12 |
更新时间 | 2022-01-10 |
上架时间 | 2020-07-07 |
评分 | 4.89/5 共9次评分 |
开发者 | Value Add |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Re:format Gmail inline replies", "description": "Reply to long emails point-by-point. Highlight text, press a button, and the quote shows up in your compose window.", "version": "0.0.12", "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*" ], "js": [ "inboxsdk.js", "content.js" ], "run_at": "document_end" } ], "permissions": [ "https:\/\/mail.google.com\/*" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "web_accessible_resources": [ "button_q.png" ], "icons": { "128": "icons_128_resized_from_website.png" }, "commands": { "QUOTE": { "suggested_key": { "default": "Ctrl+Shift+B", "linux": "Ctrl+Shift+B", "mac": "Ctrl+Shift+B", "windows": "Ctrl+Shift+B" }, "description": "Quote by keyboard." } }, "manifest_version": 2 } |