UnQuote for Gmail
Unquote text of previous mails from the reply
UnQuote for Gmailคืออะไร?
UnQuote for Gmail เป็นส่วนขยายของ Chrome ที่พัฒนาโดย xcelancer และคุณลักษณะหลักของมันคือ "Unquote text of previous mails from the reply"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย UnQuote for Gmail
ดาวน์โหลดไฟล์ส่วนขยาย UnQuote for Gmail ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
UnQuote for Gmail is a free chrome extension that removes quoted text of previous mails from the current reply. Here is how it works :- - Download the extension. - Click on extension popup and enable it. - Reload the gmail window, if opened already. - Now open any conversation and click "Reply". - Write your reply and click Send. - It also take care of signatures and keep them intact. Report any issue here https://github.com/Vikasg7/UnQuote-for-Gmail/issues Enjoy!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | UnQuote for Gmail |
ID | johachenlhehijdicggbfbkdkkeikilf |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/unquote-for-gmail/johachenlhehijdicggbfbkdkkeikilf |
คำอธิบาย | Unquote text of previous mails from the reply |
ขนาดไฟล์ | 446 KB |
จำนวนการติดตั้ง | 441 |
เวอร์ชันปัจจุบัน | 1.0.4 |
อัปเดตครั้งล่าสุด | 2023-10-25 |
วันที่เผยแพร่ | 2018-11-05 |
คะแนน | 3.00/5 รวมทั้งหมด 9 คะแนน |
ผู้พัฒนา | xcelancer |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/Vikasg7/UnQuote-for-Gmail |
URL หน้าช่วยเหลือ | https://github.com/Vikasg7/UnQuote-for-Gmail/issues |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "UnQuote for Gmail", "description": "Unquote text of previous mails from the reply", "version": "1.0.4", "manifest_version": 3, "icons": { "128": "assets\/icon.png" }, "background": { "service_worker": "background\/index.js", "type": "module" }, "action": { "default_title": "UnQuote for Gmail", "default_popup": "popup\/index.html" }, "permissions": [ "storage" ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" }, "content_scripts": [ { "matches": [ "*:\/\/mail.google.com\/*" ], "js": [ "cs\/index.js" ], "run_at": "document_end" } ] } |