Copy As Markdown
Used to copy the element in current page as markdown format.
Copy As Markdown là gì?
Copy As Markdown là một tiện ích mở rộng Chrome được phát triển bởi http://johnnyfee.github.io, và tính năng chính của nó là "Used to copy the element in current page as markdown format.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Copy As Markdown
Tải xuống các tệp mở rộng Copy As Markdown dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Just select HTML in your page and then click the the 'M' icon in the extension toolbar, then the markdown content is in your clipboard. Cool? Also, you can use the shortcut of the extension, `Alt + C` for Windows or `Option + C` for Mac or define yourself. Enjoy it. History: 2016.06.21 fix a bug, change relative links to absolute links.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | dgoenpnkphkichnohepecnmpmihnabdg |
URL Chính Thức | https://chrome.google.com/webstore/detail/copy-as-markdown/dgoenpnkphkichnohepecnmpmihnabdg |
Mô tả | Used to copy the element in current page as markdown format. |
Kích Thước Tệp | 57.18 KB |
Số Lần Cài Đặt | 3,000 |
Phiên Bản Hiện Tại | 1.1.9 |
Cập Nhật Lần Cuối | 2016-06-21 |
Ngày Phát Hành | 2016-06-21 |
Đánh Giá | 3.41/5 Tổng số 41 Đánh Giá |
Nhà Phát Triển | http://johnnyfee.github.io |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en,zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "version": "1.1.9", "manifest_version": 2, "default_locale": "en", "description": "__MSG_appDescription__", "icons": { "16": "images\/icon16.png", "128": "images\/icon128.png" }, "background": { "scripts": [ "scripts\/background.js" ] }, "commands": { "html2markdown": { "suggested_key": { "default": "Alt+C", "windows": "Alt+C", "mac": "Alt+C" }, "description": "Send 'html2markdown' command which is the same with clicking the browser_action icon." } }, "browser_action": { "default_icon": { "19": "images\/icon19.png", "38": "images\/icon38.png" }, "default_title": "__MSG_appName__" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "styles\/main.css" ], "js": [ "scripts\/vendor\/reMarked.js", "scripts\/contentscript.js", "bower_components\/rangy\/rangy-core.js" ], "run_at": "document_idle", "all_frames": false } ], "permissions": [ "*:\/\/*\/*", "clipboardWrite", "clipboardRead" ] } |