Notion-like Mail Formatting

Use notion-like HTML elements while composing emails

Τι είναι το Notion-like Mail Formatting;

Το Notion-like Mail Formatting είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://laurinstahl.page, και η κύρια λειτουργία του είναι "Use notion-like HTML elements while composing emails".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Notion-like Mail Formatting

Λήψη αρχείων επέκτασης Notion-like Mail Formatting σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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
}