Capsule
Email template creation reimagined.
Was ist Capsule?
Capsule ist eine Chrome-Erweiterung, die von Active Engagement, LLC entwickelt wurde, und ihr Hauptmerkmal ist "Email template creation reimagined.".
Erweiterungsscreenshots
Capsule-Erweiterungs-CRX-Datei herunterladen
Laden Sie Capsule-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | fgocdnaibcddcindnmphjefiabkojdmh |
| Offizielle URL | https://chromewebstore.google.com/detail/capsule/fgocdnaibcddcindnmphjefiabkojdmh |
| Beschreibung | Email template creation reimagined. |
| Dateigröße | 24.61 MB |
| Installationsanzahl | 40 |
| Aktuelle Version | 3.2.6 |
| Letztes Update | 2023-07-18 |
| Veröffentlichungsdatum | 2020-03-31 |
| Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
| Entwickler | Active Engagement, LLC |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://thecapsule.email |
| Hilfeseite URL | https://thecapsule.email/contact |
| URL der Datenschutzrichtlinien-Seite | https://thecapsule.email/docs/privacy.html |
| Unterstützte Sprachen | 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'"
}
} | |