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.
What is Re:format Gmail inline replies?
Re:format Gmail inline replies is a Chrome extension developed by Value Add, and its main feature is "Reply to long emails point-by-point. Highlight text, press a button, and the quote shows up in your compose window.".
Extension Screenshots
Download Re:format Gmail inline replies Extension CRX File
Download Re:format Gmail inline replies extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Re:format Gmail inline replies |
ID | akndolpagcjaolannkpophkacklomagp |
Official URL | https://chromewebstore.google.com/detail/reformat-gmail-inline-rep/akndolpagcjaolannkpophkacklomagp |
Description | Reply to long emails point-by-point. Highlight text, press a button, and the quote shows up in your compose window. |
File Size | 27.42 KB |
Installation Count | 1,497 |
Current Version | 0.0.12 |
Last Updated | 2022-01-10 |
Publish Date | 2020-07-07 |
Rating | 4.89/5 Total 9 Ratings |
Developer | Value Add |
[email protected] | |
Payment Type | free |
Supported Languages | 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 } |