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
Eメール [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"
    }
}