markdown clipboard
copy content with md url format
What is markdown clipboard?
markdown clipboard is a Chrome extension developed by leewei2020, and its main feature is "copy content with md url format".
Download markdown clipboard Extension CRX File
Download markdown clipboard extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | kiieboeeejffbjnfejfjphoigfdiiadh |
Official URL | https://chrome.google.com/webstore/detail/markdown-clipboard/kiieboeeejffbjnfejfjphoigfdiiadh |
Description | copy content with md url format |
File Size | 7.04 KB |
Installation Count | 21 |
Current Version | 1.2.0 |
Last Updated | 2018-06-15 |
Publish Date | 2018-06-15 |
Rating | 1.00/5 Total 1 Ratings |
Developer | leewei2020 |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/onvno/markdown-clipboard |
Privacy Policy Page URL | https://www.privacypolicies.com/live/3ad506ee-698f-47bf-a25f-08e519875264 |
Supported Languages | 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:\/\/*\/*" ] } |