Markdown Here

Write your email in Markdown, then make it pretty.

Τι είναι το Markdown Here;

Το Markdown Here είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Adam Pritchard, και η κύρια λειτουργία του είναι "Write your email in Markdown, then make it pretty.".

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

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Markdown Here

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

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

                        Markdown Here lets you write email in Markdown and render it (make it pretty!) before sending.

This is great for anyone who doesn't like fiddling around with formatting buttons while writing an email. It's especially good for programmers who write email with code in them -- it even supports syntax highlighting. And for the mathematicians among us: Markdown Here will render TeX formulae as well.

Totally simple to use:
1. Write your email in your email client's rich editor using Github-flavoured Markdown.
2. Right-click in the compose area and then click "Markdown Toggle".
3. Your email is now pretty! (That is, it's been rendered to HTML.)
4. If you like the way it looks, just send it. If you want to change or add something, click "Markdown Toggle" again to get back to your original Markdown.
5. Repeat as necessary.

Markdown Here is primarily targeted to work with Gmail and Thunderbird, but it also works pretty well with Yahoo and Hotmail. Additionally, it works great with Google Groups and Sites, Evernote's web interface, Blogger, Wordpress, and more!

Syntax highlighting note: Use fenced code blocks and specify the language name. See the project page for an example.

Privacy: Markdown Here accesses and modifies web content when you activate it. It can, in theory, access other web content, but does not. It also makes no Internet requests whatsoever. Your data is modified when and where you choose, and does not leave your browser.

Available as a Chrome, Firefox, Safari, Opera, and Thunderbird extension.

This is an open source project. Visit Markdown Here's Github page for full instructions, more information, bug reports, or to contribute.

http://markdown-here.com
https://github.com/adam-p/markdown-here                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Markdown Here Markdown Here
ID elifhakcjgalahccnjkneoccemfahfoa
Επίσημο URL https://chromewebstore.google.com/detail/markdown-here/elifhakcjgalahccnjkneoccemfahfoa
Περιγραφή Write your email in Markdown, then make it pretty.
Μέγεθος Αρχείου 561 KB
Αριθμός Εγκαταστάσεων 113,611
Τρέχουσα Έκδοση 2.12.0
Τελευταία Ενημέρωση 2015-09-07
Ημερομηνία Δημοσίευσης 2015-09-07
Αξιολόγηση 4.46/5 Συνολικά 360 Αξιολογήσεις
Προγραμματιστής Adam Pritchard
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://markdown-here.com
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/adam-p/markdown-here
Υποστηριζόμενες Γλώσσες de,en,fr,tr,es,it,pl,pt-BR,ru,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_app_name__",
    "version": "2.12.0",
    "description": "__MSG_app_slogan__",
    "homepage_url": "http:\/\/markdown-here.com",
    "minimum_chrome_version": "6",
    "default_locale": "en",
    "icons": {
        "16": "common\/images\/icon16.png",
        "32": "common\/images\/icon32.png",
        "48": "common\/images\/icon48.png",
        "128": "common\/images\/icon128.png",
        "512": "common\/images\/icon512.png"
    },
    "permissions": [
        "contextMenus",
        "storage"
    ],
    "background": {
        "page": "chrome\/background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "common\/utils.js",
                "common\/common-logic.js",
                "common\/jsHtmlToText.js",
                "common\/marked.js",
                "common\/mdh-html-to-text.js",
                "common\/markdown-here.js",
                "chrome\/contentscript.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": {
            "19": "common\/images\/icon19-button-monochrome.png",
            "38": "common\/images\/icon38-button-monochrome.png"
        },
        "default_title": "__MSG_toggle_button_tooltip__"
    },
    "options_page": "common\/options.html"
}