Link-Md

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

Wat is Link-Md?

Link-Md is een Chrome-extensie ontwikkeld door Jade Ohlhauser, en de belangrijkste functie is "Create a markdown link of the current page with quoted text.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Link-Md

Download Link-Md-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Link-Md Link-Md
ID nfjkoojhgklbbnlonpdplbdjkgoemgod
Officiële URL https://chromewebstore.google.com/detail/link-md/nfjkoojhgklbbnlonpdplbdjkgoemgod
Beschrijving Create a markdown link of the current page with quoted text.
Bestandsgrootte 11.76 KB
Aantal Installaties 302
Huidige Versie 1.3
Laatst Bijgewerkt 2022-11-17
Publicatiedatum 2021-12-07
Beoordeling 5.00/5 Totaal 7 Beoordelingen
Ontwikkelaar Jade Ohlhauser
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/jadeohl/linkmd
Help Pagina-URL https://github.com/jadeohl/linkmd
URL van de Privacybeleid Pagina https://github.com/jadeohl/linkmd/blob/main/privacy-policy.md
Ondersteunde Talen 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."
        }
    }
}