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
官方網址 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
電子郵箱 [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"
            ]
        }
    ]
}