Markdown That

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

Wat is Markdown That?

Markdown That is een Chrome-extensie ontwikkeld door orelogo, en de belangrijkste functie is "Markdown selected text from context menu or a reddit/quora post".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Markdown That

Download Markdown That-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Markdown That Markdown That
ID pgoffpcmmeagpjfjeeflmaleeikjdknc
Officiële URL https://chrome.google.com/webstore/detail/markdown-that/pgoffpcmmeagpjfjeeflmaleeikjdknc
Beschrijving Markdown selected text from context menu or a reddit/quora post
Bestandsgrootte 39.53 KB
Aantal Installaties 196
Huidige Versie 1.0.1
Laatst Bijgewerkt 2016-03-09
Publicatiedatum 2016-03-09
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar orelogo
Betalingswijze free
Extensiewebsite https://github.com/orelogo/markdownthat/
Ondersteunde Talen 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
    }
}