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 to jest Re:format Gmail inline replies?
Re:format Gmail inline replies to rozszerzenie Chrome opracowane przez Value Add, a jego główną funkcją jest „Reply to long emails point-by-point. Highlight text, press a button, and the quote shows up in your compose window.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Re:format Gmail inline replies
Pobierz pliki rozszerzeń Re:format Gmail inline replies w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | Re:format Gmail inline replies |
ID | akndolpagcjaolannkpophkacklomagp |
Oficjalny URL | https://chromewebstore.google.com/detail/reformat-gmail-inline-rep/akndolpagcjaolannkpophkacklomagp |
Opis | Reply to long emails point-by-point. Highlight text, press a button, and the quote shows up in your compose window. |
Rozmiar pliku | 27.42 KB |
Liczba instalacji | 1,497 |
Aktualna Wersja | 0.0.12 |
Ostatnia Aktualizacja | 2022-01-10 |
Data Publikacji | 2020-07-07 |
Ocena | 4.89/5 Łącznie 9 Oceny |
Deweloper | Value Add |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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 } |