Markdown Link Generator

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

Markdown Link Generator là gì?

Markdown Link Generator là một tiện ích mở rộng Chrome được phát triển bởi Unmesh Gundecha, và tính năng chính của nó là "Generates inline Markdown link from the selected text and current url of the page".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Markdown Link Generator

Tải xuống các tệp mở rộng Markdown Link Generator dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Markdown Link Generator Markdown Link Generator
ID glnecdafikgonniihbdjneaikhcgcbhb
URL Chính Thức https://chrome.google.com/webstore/detail/markdown-link-generator/glnecdafikgonniihbdjneaikhcgcbhb
Mô tả Generates inline Markdown link from the selected text and current url of the page
Kích Thước Tệp 10.13 KB
Số Lần Cài Đặt 63
Phiên Bản Hiện Tại 0.0.0.1
Cập Nhật Lần Cuối 2021-01-11
Ngày Phát Hành 2021-01-11
Nhà Phát Triển Unmesh Gundecha
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}