Capsule
Email template creation reimagined.
什麼是Capsule?
Capsule是由Active Engagement, LLC開發的Chrome擴展程式,該擴展的主要功能是“Email template creation reimagined.”。
擴展截圖
下載Capsule擴展crx文件
下載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. 擴展基本資訊
| 名稱 | |
| ID | fgocdnaibcddcindnmphjefiabkojdmh |
| 官方網址 | 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'"
}
} | |