Capsule
Email template creation reimagined.
Capsuleคืออะไร?
Capsule เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Active Engagement, LLC และคุณลักษณะหลักของมันคือ "Email template creation reimagined."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Capsule
ดาวน์โหลดไฟล์ส่วนขยาย Capsule ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
A delightfully intuitive way to convert HTML into a highly optimized email templates. Installation 1. Click "Add to Chrome" 2. Navigate to `chrome://extensions` and click "Details" on the newly installed Capsule extension. 3. Scroll down and make sure the "Allow access to file URLs" is enabled.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Capsule |
ID | fgocdnaibcddcindnmphjefiabkojdmh |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/capsule/fgocdnaibcddcindnmphjefiabkojdmh |
คำอธิบาย | Email template creation reimagined. |
ขนาดไฟล์ | 24.61 MB |
จำนวนการติดตั้ง | 40 |
เวอร์ชันปัจจุบัน | 3.2.6 |
อัปเดตครั้งล่าสุด | 2023-07-18 |
วันที่เผยแพร่ | 2020-03-31 |
คะแนน | 5.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | Active Engagement, LLC |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://thecapsule.email |
URL หน้าช่วยเหลือ | https://thecapsule.email/contact |
URL หน้านโยบายความเป็นส่วนตัว | https://thecapsule.email/docs/privacy.html |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Capsule", "description": "Email template creation reimagined.", "version": "3.2.6", "manifest_version": 3, "permissions": [ "activeTab", "downloads", "notifications", "scripting", "tabs" ], "icons": { "16": "src\/assets\/logo-no-text-16x16.png", "48": "src\/assets\/logo-no-text-48x48.png", "128": "src\/assets\/logo-no-text-128x128.png", "256": "src\/assets\/logo-no-text-256x256.png" }, "action": { "default_title": "Launch Capsule", "default_popup": "dist\/index.html", "default_icon": "src\/assets\/capsule-logo.png" }, "background": { "service_worker": "background.js" }, "web_accessible_resources": [ { "resources": [ "public\/content.css", "dist\/editor.html", "dist\/preview.html", "dist\/js\/*", "dist\/css\/*" ], "matches": [], "extension_ids": [] } ], "content_scripts": [ { "matches": [ "file:\/\/*" ], "css": [ "content.css" ], "js": [ "messaging.js", "content.js" ] } ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" } } |