Mark Wrap

This extension wraps the selected text in a markdown link with the contents of the clipboard

Mark Wrap क्या है?

Mark Wrap bitoiu द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension wraps the selected text in a markdown link with the contents of the clipboard"।

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

screenshot

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

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

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

                        This extension wraps the selected text in a markdown link with the contents of the clipboard.                    

एक्सटेंशन की मूल जानकारी

नाम Mark Wrap Mark Wrap
ID momphlnnfcfahjjofidepemapjghebmd
आधिकारिक URL https://chromewebstore.google.com/detail/mark-wrap/momphlnnfcfahjjofidepemapjghebmd
विवरण This extension wraps the selected text in a markdown link with the contents of the clipboard
फ़ाइल का आकार 16.78 KB
स्थापना संख्या 40
वर्तमान संस्करण 0.1
अंतिम अपडेट 2015-09-24
प्रकाशन तिथि 2015-09-23
रेटिंग 3.67/5 कुल 3 रेटिंग्स
डेवलपर bitoiu
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/bitoiu/markwrap
सहायता पृष्ठ URL https://github.com/bitoiu/markwrap/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Mark Wrap",
    "description": "This extension wraps the selected text in a markdown link with the contents of the clipboard",
    "version": "0.1",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "activeTab",
        "clipboardRead"
    ],
    "commands": {
        "toggle-feature-foo": {
            "suggested_key": {
                "default": "Ctrl+Shift+V",
                "mac": "Command+Shift+V"
            },
            "description": "Toggle feature foo"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentscript.js"
            ]
        }
    ],
    "icons": {
        "19": "assets\/icon19.png",
        "38": "assets\/icon38.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    }
}