select and convert to markdown

Copy select text and convert to Markdown code

select and convert to markdown क्या है?

select and convert to markdown suziwen1 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Copy select text and convert to Markdown code"।

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

screenshot

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

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

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

                        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
ईमेल [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"
            ]
        }
    ]
}