select and convert to markdown

Copy select text and convert to Markdown code

select and convert to markdownとは何ですか?

select and convert to markdownはsuziwen1によって開発されたChromeの拡張機能で、その主な機能は「Copy select text and convert to Markdown code」です。

拡張機能のスクリーンショット

screenshot

select and convert to markdown拡張機能のCRXファイルをダウンロード

select and convert to markdown拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Select And Convert To Markdown
Select And Convert To Markdown is a google chrome extension which support copy select text and convert to markdown code. The converted code is store at clipboard.

Features
support generate current tab to a markdown code when you right click on the empty area of the page.
[page title](page url)
support generate image markdown code when right click on a image.
[](image url)
support generate link markdown code when right-click on a link
[selectionText](link url)
support generate imageLink markdown code when right click on a image which is contained in "a" element.
[[selectionText](image url)](linkurl)
support generate selectionText markdown code when select a range text and right-click.                    

拡張機能の基本情報

名前 select and convert to markdown select and convert to markdown
ID mbfkalihcbaebieafiojpdaccfpalhfi
公式URL https://chrome.google.com/webstore/detail/select-and-convert-to-mar/mbfkalihcbaebieafiojpdaccfpalhfi
説明 Copy select text and convert to Markdown code
ファイルサイズ 92.41 KB
インストール数 36
現在のバージョン 0.1.0
最終更新日 2019-03-04
公開日 2019-02-27
開発者 suziwen1
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "select and convert to markdown",
    "version": "0.1.0",
    "manifest_version": 2,
    "description": "Copy select text and convert to Markdown code",
    "permissions": [
        "tabs",
        "contextMenus",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "16": "toolbar-copy-convert-markdown.png",
        "48": "toolbar-copy-convert-markdown.png",
        "128": "toolbar-copy-convert-markdown.png"
    },
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": false,
            "js": [
                "content_script.js"
            ]
        }
    ]
}