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.
Wat is Re:format Gmail inline replies?
Re:format Gmail inline replies is een Chrome-extensie ontwikkeld door Value Add, en de belangrijkste functie is "Reply to long emails point-by-point. Highlight text, press a button, and the quote shows up in your compose window.".
Extensie Screenshots
Download het CRX-bestand van de extensie Re:format Gmail inline replies
Download Re:format Gmail inline replies-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | Re:format Gmail inline replies |
ID | akndolpagcjaolannkpophkacklomagp |
Officiële URL | https://chromewebstore.google.com/detail/reformat-gmail-inline-rep/akndolpagcjaolannkpophkacklomagp |
Beschrijving | Reply to long emails point-by-point. Highlight text, press a button, and the quote shows up in your compose window. |
Bestandsgrootte | 27.42 KB |
Aantal Installaties | 1,497 |
Huidige Versie | 0.0.12 |
Laatst Bijgewerkt | 2022-01-10 |
Publicatiedatum | 2020-07-07 |
Beoordeling | 4.89/5 Totaal 9 Beoordelingen |
Ontwikkelaar | Value Add |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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 } |