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.
Co je Re:format Gmail inline replies?
Re:format Gmail inline replies je rozšíření Chrome vyvinuté Value Add, a jeho hlavní funkcí je „Reply to long emails point-by-point. Highlight text, press a button, and the quote shows up in your compose window.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Re:format Gmail inline replies
Stáhněte si soubory rozšíření Re:format Gmail inline replies ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | Re:format Gmail inline replies |
ID | akndolpagcjaolannkpophkacklomagp |
Oficiální URL | https://chromewebstore.google.com/detail/reformat-gmail-inline-rep/akndolpagcjaolannkpophkacklomagp |
Popis | Reply to long emails point-by-point. Highlight text, press a button, and the quote shows up in your compose window. |
Velikost souboru | 27.42 KB |
Počet instalací | 1,497 |
Aktuální Verze | 0.0.12 |
Poslední Aktualizace | 2022-01-10 |
Datum Vydání | 2020-07-07 |
Hodnocení | 4.89/5 Celkem 9 Hodnocení |
Vývojář | Value Add |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | 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 } |