Notion2HtmlEmail
Seamlessly convert your Notion page layout to an HTML email template.
Notion2HtmlEmail란 무엇입니까?
Notion2HtmlEmail은(는) Scalero에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Seamlessly convert your Notion page layout to an HTML email template."입니다.
확장 프로그램 스크린샷
Notion2HtmlEmail 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This Chrome extension allows you to convert your Notion page into an HTML email. Features: - Supports the 4 main sections for an HTML email: [subject], [preheader], [body] and [footer] - Includes inline CSS styles - Contains base structure for HTML emails - Contains basic media queries to ensure that the output HTML is responsive to all sizes - Supports H1, H2, H3, bulleted lists, numbered lists, and columns - Code output is clean and indented How to use this extension: 1. Set up a notion page with your email info. For best results, please use the sample layout provided below: [subject] Lorem ipsum dolor sit amet [preheader] Lorem ipsum dolor sit amet [body] Lorem ipsum dolor sit amet [footer] Lorem ipsum dolor sit amet - Facebook - Twitter 2. Click on the extension and then click “Convert and Download” 3. The converted file will then be downloaded onto your computer. You will be able to access it in “Downloads”. *The converted file will be named with the title of your Notion page. Want to preview your new HTML code quickly? Sign up for a Scalero app account, where you can easily preview your HTML, make live changes, collaborate with your team, and speed up your email creation workflow. More info here: https://scalero.io/scalero-app/
확장 프로그램 기본 정보
이름 | Notion2HtmlEmail |
ID | cfdlocakhkdhnbngagjlnlackebnllap |
공식 URL | https://chromewebstore.google.com/detail/notion2htmlemail/cfdlocakhkdhnbngagjlnlackebnllap |
설명 | Seamlessly convert your Notion page layout to an HTML email template. |
파일 크기 | 982 KB |
설치 횟수 | 103 |
현재 버전 | 0.0.0.1 |
최근 업데이트 | 2021-04-24 |
출시 날짜 | 2021-04-23 |
개발자 | Scalero |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://scalero.io/scalero-app/ |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Notion2HtmlEmail", "description": "Seamlessly convert your Notion page layout to an HTML email template.", "version": "0.0.0.1", "permissions": [ "https:\/\/www.notion.so\/*", "cookies" ], "browser_action": { "default_popup": "popup.html", "default_title": "Notion2HtmlEmail" }, "icons": { "16": "assets\/icon16.png", "48": "assets\/icon48.png", "128": "assets\/icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.notion.so\/*" ], "js": [ "js\/beautify-html.js", "js\/content.js" ] } ] } |