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”。
扩展截图
下载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.                     扩展基本信息
| 名称 |   |  
| 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"
    }
}  |  |