Paste as Markdown

Paste as Markdown.

什么是Paste as Markdown?

Paste as Markdown是由Medusis开发的Chrome扩展程序,该扩展的主要功能是“Paste as Markdown.”。

扩展截图

screenshot

下载Paste as Markdown扩展crx文件

下载Paste as Markdown扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Paste the content of the clipboard as Markdown, in any web form. The content of the clipboard can come from anywhere (a text editor, a graphics program, another web page, etc.) and be in rich text format with italics, bold, lists, etc., and it will be converted to Markdown upon pasting.

The clipboard content is unchanged, the conversion happens when pasting.

Everything happens within the browser, nothing is sent outside of the browser.

New (starting with 5.7.2): can now interpret inline styles bold & italic (for Google Docs, etc.)                    

扩展基本信息

名称 Paste as Markdown Paste as Markdown
ID lmelpnmpkekjahgdihfajfebaddffokl
官方URL https://chromewebstore.google.com/detail/paste-as-markdown/lmelpnmpkekjahgdihfajfebaddffokl
简介 Paste as Markdown.
文件大小 67.66 KB
安装次数 2,514
当前版本 0.5.7.2
更新时间 2020-02-19
上架时间 2020-02-19
评分 4.25/5 共8次评分
开发者 Medusis
电子邮箱 [email protected]
付费类型 free
扩展官网 http://markitdown.medusis.com
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Paste as Markdown",
    "short_name": "Paste-Mkdown",
    "version": "0.5.7.2",
    "description": "Paste as Markdown.",
    "homepage_url": "http:\/\/markitdown.medusis.com",
    "permissions": [
        "activeTab",
        "clipboardRead",
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "lib\/lodash.min.js",
            "js\/mkutils.js",
            "lib\/turndown.js",
            "lib\/turndown-plugin-gfm.js",
            "js\/html2mk.js",
            "js\/browser\/background.js"
        ]
    },
    "icons": {
        "16": "icons\/paste-mk_16.png",
        "19": "icons\/paste-mk_19.png",
        "38": "icons\/paste-mk_38.png",
        "48": "icons\/paste-mk_48.png",
        "128": "icons\/paste-mk_128.png"
    },
    "commands": {
        "paste-mk": {
            "suggested_key": {
                "default": "Alt+C"
            },
            "description": "Paste as Markdown"
        }
    },
    "browser_action": {
        "default_icon": {
            "19": "icons\/paste-mk_19.png"
        },
        "default_title": "MarkItDown - Click for help",
        "default_popup": "popup_help.html"
    }
}