Markdown Copy

This extension copies selected area as Markdown.

What is Markdown Copy?

Markdown Copy is a Chrome extension developed by http://ayutaya.com, and its main feature is "This extension copies selected area as Markdown.".

Extension Screenshots

screenshot

Download Markdown Copy Extension CRX File

Download Markdown Copy 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 adds a button and a context menu item to copy selected region as a Markdown text. You can copy the text which includes links, items or headings from Chrome browser to Markdown document.

Source code is available here.: https://github.com/knaka/markdown-copy                    

Extension Basic Information

Name Markdown Copy Markdown Copy
ID pmhimaghllfokaimpamhcbdhmogcbegh
Official URL https://chrome.google.com/webstore/detail/markdown-copy/pmhimaghllfokaimpamhcbdhmogcbegh
Description This extension copies selected area as Markdown.
File Size 15.22 KB
Installation Count 256
Current Version 1.0
Last Updated 2015-09-13
Publish Date 2015-09-13
Rating 3.33/5 Total 9 Ratings
Developer http://ayutaya.com
Payment Type free
Extension Website https://github.com/knaka/markdown-copy
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Markdown Copy",
    "description": "This extension copies selected area as Markdown.",
    "version": "1.0",
    "icons": {
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon128.png"
    },
    "background": {
        "page": "background.html"
    },
    "permissions": [
        "tabs",
        "contextMenus",
        "activeTab",
        "clipboardWrite"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}