Notion-like Mail Formatting

Use notion-like HTML elements while composing emails

Notion-like Mail Formatting क्या है?

Notion-like Mail Formatting https://laurinstahl.page द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Use notion-like HTML elements while composing emails"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Notion-like Mail Formatting एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
}