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.
Hvad er Re:format Gmail inline replies?
Re:format Gmail inline replies er en Chrome-udvidelse udviklet af Value Add, og dens hovedfunktion er "Reply to long emails point-by-point. Highlight text, press a button, and the quote shows up in your compose window.".
Udvidelsesskærmbilleder
Download Re:format Gmail inline replies-udvidelses-CRX-fil
Download Re:format Gmail inline replies-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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
Grundlæggende oplysninger om udvidelsen
Navn | Re:format Gmail inline replies |
ID | akndolpagcjaolannkpophkacklomagp |
Officiel URL | https://chromewebstore.google.com/detail/reformat-gmail-inline-rep/akndolpagcjaolannkpophkacklomagp |
Beskrivelse | Reply to long emails point-by-point. Highlight text, press a button, and the quote shows up in your compose window. |
Filstørrelse | 27.42 KB |
Antal Installationer | 1,497 |
Nuværende Version | 0.0.12 |
Senest Opdateret | 2022-01-10 |
Udgivelsesdato | 2020-07-07 |
Bedømmelse | 4.89/5 Samlet 9 Bedømmelser |
Udvikler | Value Add |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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 } |