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.
Was ist Re:format Gmail inline replies?
Re:format Gmail inline replies ist eine Chrome-Erweiterung, die von Value Add entwickelt wurde, und ihr Hauptmerkmal ist "Reply to long emails point-by-point. Highlight text, press a button, and the quote shows up in your compose window.".
Erweiterungsscreenshots
Re:format Gmail inline replies-Erweiterungs-CRX-Datei herunterladen
Laden Sie Re:format Gmail inline replies-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Re:format Gmail inline replies |
ID | akndolpagcjaolannkpophkacklomagp |
Offizielle URL | https://chromewebstore.google.com/detail/reformat-gmail-inline-rep/akndolpagcjaolannkpophkacklomagp |
Beschreibung | Reply to long emails point-by-point. Highlight text, press a button, and the quote shows up in your compose window. |
Dateigröße | 27.42 KB |
Installationsanzahl | 1,497 |
Aktuelle Version | 0.0.12 |
Letztes Update | 2022-01-10 |
Veröffentlichungsdatum | 2020-07-07 |
Bewertung | 4.89/5 Insgesamt 9 Bewertungen |
Entwickler | Value Add |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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 } |