Mark Wrap

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

ما هو Mark Wrap؟

Mark Wrap هو إضافة Chrome تم تطويرها بواسطة bitoiu، والميزة الرئيسية لها هي "This extension wraps the selected text in a markdown link with the contents of the clipboard".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Mark Wrap

قم بتنزيل ملفات الامتداد Mark Wrap بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة المساعدة 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"
    }
}