Link-Md

Create a markdown link of the current page with quoted text.

Hvad er Link-Md?

Link-Md er en Chrome-udvidelse udviklet af Jade Ohlhauser, og dens hovedfunktion er "Create a markdown link of the current page with quoted text.".

Udvidelsesskærmbilleder

screenshot

Download Link-Md-udvidelses-CRX-fil

Download Link-Md-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Link-Md Link-Md
ID nfjkoojhgklbbnlonpdplbdjkgoemgod
Officiel URL https://chromewebstore.google.com/detail/link-md/nfjkoojhgklbbnlonpdplbdjkgoemgod
Beskrivelse Create a markdown link of the current page with quoted text.
Filstørrelse 11.76 KB
Antal Installationer 302
Nuværende Version 1.3
Senest Opdateret 2022-11-17
Udgivelsesdato 2021-12-07
Bedømmelse 5.00/5 Samlet 7 Bedømmelser
Udvikler Jade Ohlhauser
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/jadeohl/linkmd
Hjælpeside-URL https://github.com/jadeohl/linkmd
URL til Fortrolighedspolitik Side https://github.com/jadeohl/linkmd/blob/main/privacy-policy.md
Understøttede Sprog 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."
        }
    }
}