Markdown Link Generator

Generates inline Markdown link from the selected text and current url of the page

什么是Markdown Link Generator?

Markdown Link Generator是由Unmesh Gundecha开发的Chrome扩展程序,该扩展的主要功能是“Generates inline Markdown link from the selected text and current url of the page”。

扩展截图

screenshot

下载Markdown Link Generator扩展crx文件

下载Markdown Link Generator扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        The Markdown Link Generator extension helps you create an inline text link used in a markdown document format (https://daringfireball.net/projects/markdown/syntax#link). 

To create an inline text links in a document, we use a set of regular parentheses immediately after the link text’s closing square bracket. Inside the parentheses, we put the URL where we want the link to point. These steps to create links require few copy and paste actions and switching between windows or tabs.

This extension will help you automatically generate an inline text link by 
selecting the desired text and a single click with minimal context switching.

How to use it?

1. Select the desired text on the page
2. Right-click and select the "Copy Markdown Link" option from the context menu
3. Paste the generated link in your markdown document                    

扩展基本信息

名称 Markdown Link Generator Markdown Link Generator
ID glnecdafikgonniihbdjneaikhcgcbhb
官方URL https://chrome.google.com/webstore/detail/markdown-link-generator/glnecdafikgonniihbdjneaikhcgcbhb
简介 Generates inline Markdown link from the selected text and current url of the page
文件大小 10.13 KB
安装次数 63
当前版本 0.0.0.1
更新时间 2021-01-11
上架时间 2021-01-11
开发者 Unmesh Gundecha
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Markdown Link Generator",
    "description": "Generates inline Markdown link from the selected text and current url of the page",
    "version": "0.0.0.1",
    "author": "Unmesh Gundecha",
    "manifest_version": 2,
    "permissions": [
        "contextMenus",
        "tabs",
        "clipboardWrite"
    ],
    "background": {
        "scripts": [
            "main.js"
        ]
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}