Copy as Markdown

Copy the selected HTML as Markdown

What is Copy as Markdown?

Copy as Markdown is a Chrome extension developed by sjmyuan, and its main feature is "Copy the selected HTML as Markdown".

Extension Screenshots

screenshot

Download Copy as Markdown Extension CRX File

Download Copy as Markdown extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        This extension can help you covert the selected HTML to Markdown, and copy the Markdown to your clipboard. 

There are three ways you can use it

1.  Click Copy as Markdown icon in the toolbar.
    
2.  Click the right button and click Copy as Markdown menu.
    
3.  Press Alt+Shift+Y on Windows or Option+Shift+Y on Mac.                    

Extension Basic Information

Name Copy as Markdown Copy as Markdown
ID pcmnmggfchmeohmflkfocnkackgcnlln
Official URL https://chromewebstore.google.com/detail/copy-as-markdown/pcmnmggfchmeohmflkfocnkackgcnlln
Description Copy the selected HTML as Markdown
File Size 32.32 KB
Installation Count 237
Current Version 0.0.5
Last Updated 2020-03-03
Publish Date 2020-03-02
Rating 3.25/5 Total 4 Ratings
Developer sjmyuan
Email [email protected]
Payment Type free
Extension Website https://github.com/sjmyuan/copy-as-markdown
Help Page URL https://github.com/sjmyuan/copy-as-markdown
Privacy Policy Page URL https://github.com/sjmyuan/copy-as-markdown/blob/master/privacy-policy.md
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.0.5",
    "name": "Copy as Markdown",
    "manifest_version": 2,
    "description": "Copy the selected HTML as Markdown",
    "icons": {
        "16": "img\/icon-16.png",
        "48": "img\/icon-48.png",
        "114": "img\/icon-114.png",
        "128": "img\/icon-128.png"
    },
    "browser_action": {
        "default_title": "Copy as Markdown"
    },
    "background": {
        "scripts": [
            "js\/background_script.bundle.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "js\/content_script.bundle.js"
    ],
    "commands": {
        "copy-as-markdown": {
            "suggested_key": {
                "default": "Alt+Shift+Y",
                "mac": "Alt+Shift+Y"
            },
            "description": "Copy as Markdown"
        }
    },
    "permissions": [
        "contextMenus",
        "activeTab",
        "clipboardWrite"
    ],
    "homepage_url": "https:\/\/github.com\/sjmyuan\/copy-as-markdown"
}