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.
Cos'è Re:format Gmail inline replies?
Re:format Gmail inline replies è un'estensione di Chrome sviluppata da Value Add, e la sua funzione principale è "Reply to long emails point-by-point. Highlight text, press a button, and the quote shows up in your compose window.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Re:format Gmail inline replies
Scarica i file di estensione Re:format Gmail inline replies in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Re:format Gmail inline replies |
ID | akndolpagcjaolannkpophkacklomagp |
URL Ufficiale | https://chromewebstore.google.com/detail/reformat-gmail-inline-rep/akndolpagcjaolannkpophkacklomagp |
Descrizione | Reply to long emails point-by-point. Highlight text, press a button, and the quote shows up in your compose window. |
Dimensione del File | 27.42 KB |
Conteggio Installazioni | 1,497 |
Versione Corrente | 0.0.12 |
Ultimo Aggiornamento | 2022-01-10 |
Data di Pubblicazione | 2020-07-07 |
Valutazione | 4.89/5 Totale 9 Valutazioni |
Sviluppatore | Value Add |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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 } |