Paste as Markdown

Paste as Markdown.

Paste as Markdown là gì?

Paste as Markdown là một tiện ích mở rộng Chrome được phát triển bởi Medusis, và tính năng chính của nó là "Paste as Markdown.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Paste as Markdown

Tải xuống các tệp mở rộng Paste as Markdown dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.)                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Paste as Markdown Paste as Markdown
ID lmelpnmpkekjahgdihfajfebaddffokl
URL Chính Thức https://chromewebstore.google.com/detail/paste-as-markdown/lmelpnmpkekjahgdihfajfebaddffokl
Mô tả Paste as Markdown.
Kích Thước Tệp 67.66 KB
Số Lần Cài Đặt 2,514
Phiên Bản Hiện Tại 0.5.7.2
Cập Nhật Lần Cuối 2020-02-19
Ngày Phát Hành 2020-02-19
Đánh Giá 4.25/5 Tổng số 8 Đánh Giá
Nhà Phát Triển Medusis
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://markitdown.medusis.com
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}