Copy Markup Markdown
Copy seletion as Markup or Markdown
什么是Copy Markup Markdown?
Copy Markup Markdown是由scootcho.yoo开发的Chrome扩展程序,该扩展的主要功能是“Copy seletion as Markup or Markdown”。
扩展截图
下载Copy Markup Markdown扩展crx文件
下载Copy Markup Markdown扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
# Copy Markup Markdown This extension is made for cool people who like to take notes in markdown format. Having to copy content from the web then manually converting them to markdown format is a huge pain. Especially for formatting for code blocks and inline code. Select text / code blocks from a page then you can access the copy menu from either the browser extension button or the context menu from right clicking. The menu items will be dependent on if there were any selection on the page. Menu without Selection * Markdown Link `[Title](URL)` - copy page title with URL in Markdown link format. * Page as HTML - copy entire page html, sanitized, eliminated classes, ids, javascripts with HTML structure intact. * Page as Markdown - copy entire page in markdown format. Menu with selection Menu items without Selection, plus: * Selection as HTML - copy selection as html, sanitized, with HTML structure. * Selection as Markdown - copy selection as markdown. ===== SAMPLE COPY SELECTION AS MARKDOWN ====== An example of a closure ----------------------- The following code returns a reference to a function: ``` function sayHello2(name) { var text = 'Hello ' + name; // Local variable var say = function() { console.log(text); } return say; } var say2 = sayHello2('Bob'); say2(); // logs "Hello Bob" ``` ===== SAMPLE COPY SELECTION AS HTML ======An example of a closure
The following code returns a reference to a function:
function sayHello2(name) { var text = 'Hello ' + name; // Local variable var say = function() { console.log(text); } return say; } var say2 = sayHello2('Bob'); say2(); // logs "Hello Bob"
扩展基本信息
名称 | Copy Markup Markdown |
ID | kjolnndanembeldfjpchaipfopflpdph |
官方URL | https://chromewebstore.google.com/detail/copy-markup-markdown/kjolnndanembeldfjpchaipfopflpdph |
简介 | Copy seletion as Markup or Markdown |
文件大小 | 145 KB |
安装次数 | 1,000 |
当前版本 | 0.10.0 |
更新时间 | 2019-02-24 |
上架时间 | 2019-02-19 |
评分 | 4.60/5 共5次评分 |
开发者 | scootcho.yoo |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Copy Markup Markdown", "version": "0.10.0", "description": "Copy seletion as Markup or Markdown", "manifest_version": 2, "permissions": [ "storage", "tabs", " |