select and convert to markdown

Copy select text and convert to Markdown code

select and convert to markdownคืออะไร?

select and convert to markdown เป็นส่วนขยายของ Chrome ที่พัฒนาโดย TheMaple Network Inc. และคุณลักษณะหลักของมันคือ "Copy select text and convert to Markdown code"

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย select and convert to markdown

ดาวน์โหลดไฟล์ส่วนขยาย select and convert to markdown ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        作者:suziwen

主要功能有:

1. 选择文本后右键选择转换为markdown格式
* 直接转换成 markdown
* 转换成 markdown+ 文章来源地址
* 转换成 title + markdown + 文章来源地址
2. 在图片上右键选择时可直接将图片地址转换成markdown的图片链接格式
3. 在链接上右键选择时可将该链接转换成markdown的普通链接格式
4.在页面的空白处右键选择时可将该页地址转换成markdown的普通格式

目前存在的问题:

1. 不支持frame,iframe里的内容选择                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ select and convert to markdown select and convert to markdown
ID igbjomagkpbgfofncgmkikopblijmbil
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/select-and-convert-to-mar/igbjomagkpbgfofncgmkikopblijmbil
คำอธิบาย Copy select text and convert to Markdown code
ขนาดไฟล์ 92.53 KB
จำนวนการติดตั้ง 64
เวอร์ชันปัจจุบัน 0.1.0
อัปเดตครั้งล่าสุด 2014-01-12
วันที่เผยแพร่ 2014-01-12
คะแนน 3.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา TheMaple Network Inc.
ประเภทการชำระเงิน free
ภาษาที่รองรับ zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "select and convert to markdown",
    "version": "0.1.0",
    "manifest_version": 2,
    "description": "Copy select text and convert to Markdown code",
    "permissions": [
        "tabs",
        "contextMenus",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "16": "toolbar-copy-convert-markdown.png",
        "48": "toolbar-copy-convert-markdown.png",
        "128": "toolbar-copy-convert-markdown.png"
    },
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": false,
            "js": [
                "content_script.js"
            ]
        }
    ]
}