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 } |