Notion-like Mail Formatting

Use notion-like HTML elements while composing emails

Notion-like Mail Formatting란 무엇입니까?

Notion-like Mail Formatting은(는) https://laurinstahl.page에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Use notion-like HTML elements while composing emails"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Notion-like Mail Formatting 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Nothing is worse than reading long boring emails. Get your point across by writing easy to read emails with this chrome extension that creates Notion-like HTML elements simply by typing out shortcut commands like “/h1”, “/callout”, “/table 3x3” and more!

Callout elements are also customisable by colour (“/callout red”) so you can highlight different types of information to your recipients.This extension also provides command shortcuts on commonly used Gmail formatting such as “/h1” for headers and “/quote” and more.

Make your emails clearer and easier to understand without your fingers even leaving the keyboard!

Try out with this full list of commands:

------
/callout
/quote
/code
/h1
/h2
/h3
/divider
/twocolumn
/table
------

Format it using any of these colors: blue, red, yellow, green, pink, orange, purple. Simply add them to your command:

"/callout red Hello"

Now new, Tables. Use it like this:
"/table 5x5"                    

확장 프로그램 기본 정보

이름 Notion-like Mail Formatting Notion-like Mail Formatting
ID fimaaiopcpeobbjijioojhphogealfod
공식 URL https://chromewebstore.google.com/detail/notion-like-mail-formatti/fimaaiopcpeobbjijioojhphogealfod
설명 Use notion-like HTML elements while composing emails
파일 크기 200 KB
설치 횟수 378
현재 버전 1.0
최근 업데이트 2021-10-28
출시 날짜 2021-10-26
평점 4.50/5 총 2 개의 평점
개발자 https://laurinstahl.page
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://calico-printer-a85.notion.site/Notion-Mail-Formatter-984e6e7ae8ec4ebcbce2fe4874e8a376
개인정보 보호 정책 페이지 URL https://www.notion.so/Privacy-Policy-1f7258d23cf84671837c7f8203df5761
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Notion-like Mail Formatting",
    "version": "1.0",
    "description": "Use notion-like HTML elements while composing emails",
    "background": {
        "scripts": [
            ".\/scripts\/background.js"
        ],
        "persistent": true
    },
    "icons": {
        "192": "logo.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/mail.google.com\/*"
            ],
            "js": [
                ".\/scripts\/content.js"
            ]
        }
    ],
    "permissions": [
        "https:\/\/mail.google.com\/*"
    ],
    "browser_action": {
        "default_popup": ".\/index.html"
    },
    "manifest_version": 2
}