Capsule

Email template creation reimagined.

What is Capsule?

Capsule is a Chrome extension developed by Active Engagement, LLC, and its main feature is "Email template creation reimagined.".

Extension Screenshots

screenshot

Download Capsule Extension CRX File

Download Capsule extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Capsule Capsule
ID fgocdnaibcddcindnmphjefiabkojdmh
Official URL https://chromewebstore.google.com/detail/capsule/fgocdnaibcddcindnmphjefiabkojdmh
Description Email template creation reimagined.
File Size 24.61 MB
Installation Count 40
Current Version 3.2.6
Last Updated 2023-07-18
Publish Date 2020-03-31
Rating 5.00/5 Total 2 Ratings
Developer Active Engagement, LLC
Email [email protected]
Payment Type free
Extension Website https://thecapsule.email
Help Page URL https://thecapsule.email/contact
Privacy Policy Page URL https://thecapsule.email/docs/privacy.html
Supported Languages 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'"
    }
}