Markdown Copy
This extension copies selected area as Markdown.
什么是Markdown Copy?
Markdown Copy是由http://ayutaya.com开发的Chrome扩展程序,该扩展的主要功能是“This extension copies selected area as Markdown.”。
扩展截图
下载Markdown Copy扩展crx文件
下载Markdown Copy扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension adds a button and a context menu item to copy selected region as a Markdown text. You can copy the text which includes links, items or headings from Chrome browser to Markdown document.
Source code is available here.: https://github.com/knaka/markdown-copy 扩展基本信息
| 名称 | |
| ID | pmhimaghllfokaimpamhcbdhmogcbegh |
| 官方URL | https://chrome.google.com/webstore/detail/markdown-copy/pmhimaghllfokaimpamhcbdhmogcbegh |
| 简介 | This extension copies selected area as Markdown. |
| 文件大小 | 15.22 KB |
| 安装次数 | 256 |
| 当前版本 | 1.0 |
| 更新时间 | 2015-09-13 |
| 上架时间 | 2015-09-13 |
| 评分 | 3.33/5 共9次评分 |
| 开发者 | http://ayutaya.com |
| 付费类型 | free |
| 扩展官网 | https://github.com/knaka/markdown-copy |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Markdown Copy",
"description": "This extension copies selected area as Markdown.",
"version": "1.0",
"icons": {
"128": "icon128.png"
},
"browser_action": {
"default_icon": "icon128.png"
},
"background": {
"page": "background.html"
},
"permissions": [
"tabs",
"contextMenus",
"activeTab",
"clipboardWrite"
],
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"content.js"
]
}
]
} | |