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
公式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"
    ]
}