Copy As Markdown

Used to copy the element in current page as markdown format.

Qu'est-ce que Copy As Markdown ?

Copy As Markdown est une extension Chrome développée par http://johnnyfee.github.io, et sa fonction principale est "Used to copy the element in current page as markdown format.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Copy As Markdown

Téléchargez les fichiers d'extension Copy As Markdown 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

                        Just select HTML in your page and then click the the 'M' icon in the extension toolbar, then the markdown content is in your clipboard. Cool?

Also, you can use the shortcut of the extension, `Alt + C` for Windows or `Option + C` for Mac or define yourself. Enjoy it.

History:

2016.06.21 fix a bug, change relative links to absolute links.                    

Informations de Base sur l'Extension

Nom Copy As Markdown Copy As Markdown
ID dgoenpnkphkichnohepecnmpmihnabdg
URL Officiel https://chrome.google.com/webstore/detail/copy-as-markdown/dgoenpnkphkichnohepecnmpmihnabdg
Description Used to copy the element in current page as markdown format.
Taille du Fichier 57.18 KB
Nombre d'Installations 3,000
Version Actuelle 1.1.9
Dernière Mise à Jour 2016-06-21
Date de Publication 2016-06-21
Évaluation 3.41/5 Total 41 Évaluations
Développeur http://johnnyfee.github.io
Type de Paiement free
Langues Prises en Charge en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "1.1.9",
    "manifest_version": 2,
    "default_locale": "en",
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "images\/icon16.png",
        "128": "images\/icon128.png"
    },
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "commands": {
        "html2markdown": {
            "suggested_key": {
                "default": "Alt+C",
                "windows": "Alt+C",
                "mac": "Alt+C"
            },
            "description": "Send 'html2markdown' command which is the same with clicking the browser_action icon."
        }
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/icon19.png",
            "38": "images\/icon38.png"
        },
        "default_title": "__MSG_appName__"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "styles\/main.css"
            ],
            "js": [
                "scripts\/vendor\/reMarked.js",
                "scripts\/contentscript.js",
                "bower_components\/rangy\/rangy-core.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "permissions": [
        "*:\/\/*\/*",
        "clipboardWrite",
        "clipboardRead"
    ]
}