Mark Wrap

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

什麼是Mark Wrap?

Mark Wrap是由bitoiu開發的Chrome擴展程式,該擴展的主要功能是“This extension wraps the selected text in a markdown link with the contents of the clipboard”。

擴展截圖

screenshot

下載Mark Wrap擴展crx文件

下載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
官方網址 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"
    }
}