Capsule
Email template creation reimagined.
Capsule क्या है?
Capsule Active Engagement, LLC द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Email template creation reimagined."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Capsule एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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'" } } |