Capsule

Email template creation reimagined.

什么是Capsule?

Capsule是由Active Engagement, LLC开发的Chrome扩展程序,该扩展的主要功能是“Email template creation reimagined.”。

扩展截图

screenshot

下载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.                    

扩展基本信息

名称 Capsule 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'"
    }
}