markdown clipboard
copy content with md url format
什么是markdown clipboard?
markdown clipboard是由leewei2020开发的Chrome扩展程序,该扩展的主要功能是“copy content with md url format”。
下载markdown clipboard扩展crx文件
下载markdown clipboard扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Easy Copy Text & Img from Browser Page.
Use
- select the content you need: text or img
- use the default short cut: Alt + C,
- then you can paster the format markdown link to where you want
Of course, after you select your content, u can click the extension icon for working too. 扩展基本信息
| 名称 | |
| ID | kiieboeeejffbjnfejfjphoigfdiiadh |
| 官方URL | https://chrome.google.com/webstore/detail/markdown-clipboard/kiieboeeejffbjnfejfjphoigfdiiadh |
| 简介 | copy content with md url format |
| 文件大小 | 7.04 KB |
| 安装次数 | 21 |
| 当前版本 | 1.2.0 |
| 更新时间 | 2018-06-15 |
| 上架时间 | 2018-06-15 |
| 评分 | 1.00/5 共1次评分 |
| 开发者 | leewei2020 |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/onvno/markdown-clipboard |
| 隐私政策页面URL | https://www.privacypolicies.com/live/3ad506ee-698f-47bf-a25f-08e519875264 |
| 支持的语言 | zh-CN |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "markdown clipboard",
"short_name": "md",
"description": "copy content with md url format",
"version": "1.2.0",
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"browser_action": {
"default_title": "markdown clipboard",
"default_icon": "markdown.png"
},
"options_page": "options.html",
"icons": {
"128": "markdown.png",
"16": "markdown.png",
"48": "markdown.png"
},
"commands": {
"base": {
"description": "ClipBoard Copy",
"suggested_key": {
"default": "Alt+C",
"mac": "Alt+C"
}
}
},
"permissions": [
"activeTab",
"tabs",
"http:\/\/*\/*",
"https:\/\/*\/*"
]
} | |