Mark Wrap

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

Apa itu Mark Wrap?

Mark Wrap adalah ekstensi Chrome yang dikembangkan oleh bitoiu, dan fitur utamanya adalah "This extension wraps the selected text in a markdown link with the contents of the clipboard".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Mark Wrap

Unduh file ekstensi Mark Wrap dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Mark Wrap Mark Wrap
ID momphlnnfcfahjjofidepemapjghebmd
URL Resmi https://chromewebstore.google.com/detail/mark-wrap/momphlnnfcfahjjofidepemapjghebmd
Deskripsi This extension wraps the selected text in a markdown link with the contents of the clipboard
Ukuran File 16.78 KB
Jumlah Instalasi 40
Versi Saat Ini 0.1
Terakhir Diperbarui 2015-09-24
Tanggal Publikasi 2015-09-23
Penilaian 3.67/5 Total 3 Penilaian
Pengembang bitoiu
Tipe Pembayaran free
Situs Ekstensi https://github.com/bitoiu/markwrap
URL Halaman Bantuan https://github.com/bitoiu/markwrap/issues
Bahasa yang Didukung 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"
    }
}