Markdown That

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

Qu'est-ce que Markdown That ?

Markdown That est une extension Chrome développée par orelogo, et sa fonction principale est "Markdown selected text from context menu or a reddit/quora post".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Markdown That

Téléchargez les fichiers d'extension Markdown That au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Markdown That Markdown That
ID pgoffpcmmeagpjfjeeflmaleeikjdknc
URL Officiel https://chrome.google.com/webstore/detail/markdown-that/pgoffpcmmeagpjfjeeflmaleeikjdknc
Description Markdown selected text from context menu or a reddit/quora post
Taille du Fichier 39.53 KB
Nombre d'Installations 196
Version Actuelle 1.0.1
Dernière Mise à Jour 2016-03-09
Date de Publication 2016-03-09
Évaluation 5.00/5 Total 2 Évaluations
Développeur orelogo
Type de Paiement free
Site Web de l'Extension https://github.com/orelogo/markdownthat/
Langues Prises en Charge 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
    }
}