Capsule

Email template creation reimagined.

ما هو Capsule؟

Capsule هو إضافة Chrome تم تطويرها بواسطة Active Engagement, LLC، والميزة الرئيسية لها هي "Email template creation reimagined.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Capsule

قم بتنزيل ملفات الامتداد Capsule بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة https://thecapsule.email/contact
عنوان صفحة سياسة الخصوصية 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'"
    }
}