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
公式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
Eメール [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."
        }
    }
}