Notion2HtmlEmail

Seamlessly convert your Notion page layout to an HTML email template.

Notion2HtmlEmailคืออะไร?

Notion2HtmlEmail เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Scalero และคุณลักษณะหลักของมันคือ "Seamlessly convert your Notion page layout to an HTML email template."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Notion2HtmlEmail

ดาวน์โหลดไฟล์ส่วนขยาย Notion2HtmlEmail ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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 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"
            ]
        }
    ]
}