Markdown That

Markdown selected text from context menu or a reddit/quora post

What is Markdown That?

Markdown That is a Chrome extension developed by orelogo, and its main feature is "Markdown selected text from context menu or a reddit/quora post".

Extension Screenshots

screenshot

Download Markdown That Extension CRX File

Download Markdown That extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        This extension will add a context menu option to convert selected text to markdown. A popup will display the message. The extension will add a "mark that down" button to reddit and quora posts. Once pressed, the popup will display the post in the markdown format along with the title, author, date, and url.

Icon: freepik.com from flaticon.com
Music: bensound.com                    

Extension Basic Information

Name Markdown That Markdown That
ID pgoffpcmmeagpjfjeeflmaleeikjdknc
Official URL https://chrome.google.com/webstore/detail/markdown-that/pgoffpcmmeagpjfjeeflmaleeikjdknc
Description Markdown selected text from context menu or a reddit/quora post
File Size 39.53 KB
Installation Count 196
Current Version 1.0.1
Last Updated 2016-03-09
Publish Date 2016-03-09
Rating 5.00/5 Total 2 Ratings
Developer orelogo
Payment Type free
Extension Website https://github.com/orelogo/markdownthat/
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Markdown That",
    "description": "Markdown selected text from context menu or a reddit\/quora post",
    "version": "1.0.1",
    "permissions": [
        "activeTab",
        "contextMenus",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "lib\/jquery-2.2.0.min.js",
                "js\/contentscript.js"
            ],
            "css": [
                "css\/popup.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "icons": {
        "128": "icon128.png"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}