Markdown That

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

Cos'è Markdown That?

Markdown That è un'estensione di Chrome sviluppata da orelogo, e la sua funzione principale è "Markdown selected text from context menu or a reddit/quora post".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Markdown That

Scarica i file di estensione Markdown That in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Markdown That Markdown That
ID pgoffpcmmeagpjfjeeflmaleeikjdknc
URL Ufficiale https://chrome.google.com/webstore/detail/markdown-that/pgoffpcmmeagpjfjeeflmaleeikjdknc
Descrizione Markdown selected text from context menu or a reddit/quora post
Dimensione del File 39.53 KB
Conteggio Installazioni 196
Versione Corrente 1.0.1
Ultimo Aggiornamento 2016-03-09
Data di Pubblicazione 2016-03-09
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore orelogo
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/orelogo/markdownthat/
Lingue Supportate 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
    }
}