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はValue Addによって開発されたChromeの拡張機能で、その主な機能は「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拡張機能のCRXファイルをダウンロード
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 |
Eメール | [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 } |