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.”。

擴展截圖

screenshot

下載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 Link-Md
ID nfjkoojhgklbbnlonpdplbdjkgoemgod
官方網址 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."
        }
    }
}