Capsule
Email template creation reimagined.
Capsule란 무엇입니까?
Capsule은(는) Active Engagement, LLC에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Email template creation reimagined."입니다.
확장 프로그램 스크린샷
Capsule 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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'" } } |