Gmail Pop Out Reply Default
Automatically opens the Pop Out Reply when clicking Reply, that's it.
Gmail Pop Out Reply Defaultคืออะไร?
Gmail Pop Out Reply Default เป็นส่วนขยายของ Chrome ที่พัฒนาโดย etnik29 และคุณลักษณะหลักของมันคือ "Automatically opens the Pop Out Reply when clicking Reply, that's it."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Gmail Pop Out Reply Default
ดาวน์โหลดไฟล์ส่วนขยาย Gmail Pop Out Reply Default ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
In Gmail: Opens the Pop Out Reply when clicking Reply. No information is collected.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Gmail Pop Out Reply Default |
ID | ogngkhlopjdkmfldjnhdinibcaffdnik |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/gmail-pop-out-reply-defau/ogngkhlopjdkmfldjnhdinibcaffdnik |
คำอธิบาย | Automatically opens the Pop Out Reply when clicking Reply, that's it. |
ขนาดไฟล์ | 76.83 KB |
จำนวนการติดตั้ง | 94 |
เวอร์ชันปัจจุบัน | 2.0.0 |
อัปเดตครั้งล่าสุด | 2023-06-18 |
วันที่เผยแพร่ | 2023-06-18 |
คะแนน | 3.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | etnik29 |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Gmail Pop Out Reply Default", "description": "Automatically opens the Pop Out Reply when clicking Reply, that's it.", "version": "2.0.0", "background": { "service_worker": "background.js" }, "action": { "default_icon": { "16": "icons\/icons.png", "48": "icons\/icons.png", "128": "icons\/icons.png" }, "default_title": "Gmail Pop Out Reply Default" }, "content_scripts": [ { "matches": [ "*:\/\/mail.google.com\/mail\/*" ], "js": [ "content\/content.js" ] } ], "icons": { "16": "icons\/icons.png", "48": "icons\/icons.png", "128": "icons\/icons.png" }, "host_permissions": [ "https:\/\/mail.google.com\/*" ] } |