Link-Md
Create a markdown link of the current page with quoted text.
What is Link-Md?
Link-Md is a Chrome extension developed by Jade Ohlhauser, and its main feature is "Create a markdown link of the current page with quoted text.".
Extension Screenshots
Download Link-Md Extension CRX File
Download Link-Md 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
Click the plugin icon or use the hotkey to put a link in markdown format of the active tab into your clipboard. If you have text selected it will include it as a quote. I made it for referencing websites in my favorite note app, Logseq.
Extension Basic Information
Name | Link-Md |
ID | nfjkoojhgklbbnlonpdplbdjkgoemgod |
Official URL | https://chromewebstore.google.com/detail/link-md/nfjkoojhgklbbnlonpdplbdjkgoemgod |
Description | Create a markdown link of the current page with quoted text. |
File Size | 11.76 KB |
Installation Count | 302 |
Current Version | 1.3 |
Last Updated | 2022-11-17 |
Publish Date | 2021-12-07 |
Rating | 5.00/5 Total 7 Ratings |
Developer | Jade Ohlhauser |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/jadeohl/linkmd |
Help Page URL | https://github.com/jadeohl/linkmd |
Privacy Policy Page URL | https://github.com/jadeohl/linkmd/blob/main/privacy-policy.md |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Link-Md", "description": "Create a markdown link of the current page with quoted text.", "version": "1.3", "action": { "default_popup": "popup.html", "default_icon": { "64": "icon-64.png", "128": "icon-128.png" } }, "icons": { "64": "icon-64.png", "128": "icon-128.png" }, "permissions": [ "activeTab", "scripting", "clipboardWrite" ], "commands": { "_execute_action": { "suggested_key": { "default": "Alt+Shift+C" }, "description": "Copy quote link to clipboard." } } } |