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
Eメール [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'"
    }
}