Copy As Markdown

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

什麼是Copy As Markdown?

Copy As Markdown是由http://johnnyfee.github.io開發的Chrome擴展程式,該擴展的主要功能是“Used to copy the element in current page as markdown format.”。

擴展截圖

screenshot

下載Copy As Markdown擴展crx文件

下載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
官方網址 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"
    ]
}