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.
Что такое Re:format Gmail inline replies?
Re:format Gmail inline replies - это расширение Chrome, разработанное Value Add, и его основная функция - "Reply to long emails point-by-point. Highlight text, press a button, and the quote shows up in your compose window.".
Снимки экрана расширения
Скачать файл CRX расширения Re:format Gmail inline replies
Скачайте файлы расширений Re:format Gmail inline replies в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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
Основная информация о расширении
Название | Re:format Gmail inline replies |
ID | akndolpagcjaolannkpophkacklomagp |
Официальный URL | https://chromewebstore.google.com/detail/reformat-gmail-inline-rep/akndolpagcjaolannkpophkacklomagp |
Описание | Reply to long emails point-by-point. Highlight text, press a button, and the quote shows up in your compose window. |
Размер файла | 27.42 KB |
Количество установок | 1,497 |
Текущая Версия | 0.0.12 |
Последнее Обновление | 2022-01-10 |
Дата публикации | 2020-07-07 |
Рейтинг | 4.89/5 Всего 9 оценок |
Разработчик | Value Add |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | 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 } |