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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 } |