Capsule
Email template creation reimagined.
Capsule là gì?
Capsule là một tiện ích mở rộng Chrome được phát triển bởi Active Engagement, LLC, và tính năng chính của nó là "Email template creation reimagined.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Capsule
Tải xuống các tệp mở rộng Capsule dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Capsule |
ID | fgocdnaibcddcindnmphjefiabkojdmh |
URL Chính Thức | https://chromewebstore.google.com/detail/capsule/fgocdnaibcddcindnmphjefiabkojdmh |
Mô tả | Email template creation reimagined. |
Kích Thước Tệp | 24.61 MB |
Số Lần Cài Đặt | 40 |
Phiên Bản Hiện Tại | 3.2.6 |
Cập Nhật Lần Cuối | 2023-07-18 |
Ngày Phát Hành | 2020-03-31 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | Active Engagement, LLC |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://thecapsule.email |
URL Trang Trợ Giúp | https://thecapsule.email/contact |
URL Trang Chính Sách Bảo Mật | https://thecapsule.email/docs/privacy.html |
Ngôn Ngữ Được Hỗ Trợ | 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'" } } |