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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Generates inline Markdown link from the selected text and current url of the page"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Markdown Link Generator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
    }
}