Mark Wrap

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

Mark Wrap là gì?

Mark Wrap là một tiện ích mở rộng Chrome được phát triển bởi bitoiu, và tính năng chính của nó là "This extension wraps the selected text in a markdown link with the contents of the clipboard".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Mark Wrap

Tải xuống các tệp mở rộng Mark Wrap dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Mark Wrap Mark Wrap
ID momphlnnfcfahjjofidepemapjghebmd
URL Chính Thức https://chromewebstore.google.com/detail/mark-wrap/momphlnnfcfahjjofidepemapjghebmd
Mô tả This extension wraps the selected text in a markdown link with the contents of the clipboard
Kích Thước Tệp 16.78 KB
Số Lần Cài Đặt 40
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2015-09-24
Ngày Phát Hành 2015-09-23
Đánh Giá 3.67/5 Tổng số 3 Đánh Giá
Nhà Phát Triển bitoiu
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/bitoiu/markwrap
URL Trang Trợ Giúp https://github.com/bitoiu/markwrap/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}