Paste as Markdown

Paste as Markdown.

Paste as Markdownคืออะไร?

Paste as Markdown เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Medusis และคุณลักษณะหลักของมันคือ "Paste as Markdown."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Paste as Markdown

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    }
}