25 Super Reply
Reply to any email in 1 click
25 Super Replyคืออะไร?
25 Super Reply เป็นส่วนขยายของ Chrome ที่พัฒนาโดย 25 Superstars และคุณลักษณะหลักของมันคือ "Reply to any email in 1 click"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย 25 Super Reply
ดาวน์โหลดไฟล์ส่วนขยาย 25 Super Reply ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Reply to any email in 1 click. ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | bffpbnbaijcbgacpipbpkdcknifodecm |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/25-super-reply/bffpbnbaijcbgacpipbpkdcknifodecm |
| คำอธิบาย | Reply to any email in 1 click |
| ขนาดไฟล์ | 528 KB |
| จำนวนการติดตั้ง | 84 |
| เวอร์ชันปัจจุบัน | 0.1.1 |
| อัปเดตครั้งล่าสุด | 2023-02-14 |
| วันที่เผยแพร่ | 2023-02-13 |
| ผู้พัฒนา | 25 Superstars |
| อีเมล | [email protected] |
| ประเภทการชำระเงิน | free |
| ภาษาที่รองรับ | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "25 Super Reply",
"version": "0.1.1",
"description": "Reply to any email in 1 click",
"icons": {
"16": "icons\/icon_16.png",
"32": "icons\/icon_32.png",
"48": "icons\/icon_48.png",
"128": "icons\/icon_128.png"
},
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "Mail.ai",
"default_popup": "popup.html"
},
"permissions": [],
"content_scripts": [
{
"matches": [
"https:\/\/mail.google.com\/*",
"https:\/\/inbox.google.com\/*"
],
"run_at": "document_start",
"js": [
"contentScript.js"
],
"css": [
"extension.css"
]
},
{
"matches": [
"https:\/\/mail.google.com\/*",
"https:\/\/inbox.google.com\/*"
],
"run_at": "document_end",
"js": [
"contentInbox.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"gmailJsLoader.js",
"extension.js",
"gmailJsLoader.js.map",
"extension.js.map"
],
"matches": [
" | |