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.
Qu'est-ce que Re:format Gmail inline replies ?
Re:format Gmail inline replies est une extension Chrome développée par Value Add, et sa fonction principale est "Reply to long emails point-by-point. Highlight text, press a button, and the quote shows up in your compose window.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Re:format Gmail inline replies
Téléchargez les fichiers d'extension Re:format Gmail inline replies au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Re:format Gmail inline replies |
ID | akndolpagcjaolannkpophkacklomagp |
URL Officiel | 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. |
Taille du Fichier | 27.42 KB |
Nombre d'Installations | 1,497 |
Version Actuelle | 0.0.12 |
Dernière Mise à Jour | 2022-01-10 |
Date de Publication | 2020-07-07 |
Évaluation | 4.89/5 Total 9 Évaluations |
Développeur | Value Add |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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 } |