Link-Md
Create a markdown link of the current page with quoted text.
什么是Link-Md?
Link-Md是由Jade Ohlhauser开发的Chrome扩展程序,该扩展的主要功能是“Create a markdown link of the current page with quoted text.”。
扩展截图
下载Link-Md扩展crx文件
下载Link-Md扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | Link-Md |
ID | nfjkoojhgklbbnlonpdplbdjkgoemgod |
官方URL | https://chromewebstore.google.com/detail/link-md/nfjkoojhgklbbnlonpdplbdjkgoemgod |
简介 | Create a markdown link of the current page with quoted text. |
文件大小 | 11.76 KB |
安装次数 | 302 |
当前版本 | 1.3 |
更新时间 | 2022-11-17 |
上架时间 | 2021-12-07 |
评分 | 5.00/5 共7次评分 |
开发者 | Jade Ohlhauser |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/jadeohl/linkmd |
帮助页面URL | https://github.com/jadeohl/linkmd |
隐私政策页面URL | https://github.com/jadeohl/linkmd/blob/main/privacy-policy.md |
支持的语言 | 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." } } } |