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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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