Copy As Markdown

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

O que é Copy As Markdown?

Copy As Markdown é uma extensão do Chrome desenvolvida por http://johnnyfee.github.io, e sua principal característica é "Used to copy the element in current page as markdown format.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Copy As Markdown

Baixe arquivos de extensão Copy As Markdown no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Copy As Markdown Copy As Markdown
ID dgoenpnkphkichnohepecnmpmihnabdg
URL Oficial https://chrome.google.com/webstore/detail/copy-as-markdown/dgoenpnkphkichnohepecnmpmihnabdg
Descrição Used to copy the element in current page as markdown format.
Tamanho do Arquivo 57.18 KB
Contagem de Instalações 3,000
Versão Atual 1.1.9
Última Atualização 2016-06-21
Data de Publicação 2016-06-21
Classificação 3.41/5 Total de 41 Avaliações
Desenvolvedor http://johnnyfee.github.io
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}