Copy As Markdown

Used to copy the element in current page as markdown format.

Copy As Markdownคืออะไร?

Copy As Markdown เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://johnnyfee.github.io และคุณลักษณะหลักของมันคือ "Used to copy the element in current page as markdown format."

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

screenshot

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

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

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

                        Just select HTML in your page and then click the the 'M' icon in the extension toolbar, then the markdown content is in your clipboard. Cool?

Also, you can use the shortcut of the extension, `Alt + C` for Windows or `Option + C` for Mac or define yourself. Enjoy it.

History:

2016.06.21 fix a bug, change relative links to absolute links.                    

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

ชื่อ Copy As Markdown Copy As Markdown
ID dgoenpnkphkichnohepecnmpmihnabdg
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/copy-as-markdown/dgoenpnkphkichnohepecnmpmihnabdg
คำอธิบาย Used to copy the element in current page as markdown format.
ขนาดไฟล์ 57.18 KB
จำนวนการติดตั้ง 3,000
เวอร์ชันปัจจุบัน 1.1.9
อัปเดตครั้งล่าสุด 2016-06-21
วันที่เผยแพร่ 2016-06-21
คะแนน 3.41/5 รวมทั้งหมด 41 คะแนน
ผู้พัฒนา http://johnnyfee.github.io
ประเภทการชำระเงิน free
ภาษาที่รองรับ en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "1.1.9",
    "manifest_version": 2,
    "default_locale": "en",
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "images\/icon16.png",
        "128": "images\/icon128.png"
    },
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "commands": {
        "html2markdown": {
            "suggested_key": {
                "default": "Alt+C",
                "windows": "Alt+C",
                "mac": "Alt+C"
            },
            "description": "Send 'html2markdown' command which is the same with clicking the browser_action icon."
        }
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/icon19.png",
            "38": "images\/icon38.png"
        },
        "default_title": "__MSG_appName__"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "styles\/main.css"
            ],
            "js": [
                "scripts\/vendor\/reMarked.js",
                "scripts\/contentscript.js",
                "bower_components\/rangy\/rangy-core.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "permissions": [
        "*:\/\/*\/*",
        "clipboardWrite",
        "clipboardRead"
    ]
}