Link-Md

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

Was ist Link-Md?

Link-Md ist eine Chrome-Erweiterung, die von Jade Ohlhauser entwickelt wurde, und ihr Hauptmerkmal ist "Create a markdown link of the current page with quoted text.".

Erweiterungsscreenshots

screenshot

Link-Md-Erweiterungs-CRX-Datei herunterladen

Laden Sie Link-Md-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Link-Md Link-Md
ID nfjkoojhgklbbnlonpdplbdjkgoemgod
Offizielle URL https://chromewebstore.google.com/detail/link-md/nfjkoojhgklbbnlonpdplbdjkgoemgod
Beschreibung Create a markdown link of the current page with quoted text.
Dateigröße 11.76 KB
Installationsanzahl 302
Aktuelle Version 1.3
Letztes Update 2022-11-17
Veröffentlichungsdatum 2021-12-07
Bewertung 5.00/5 Insgesamt 7 Bewertungen
Entwickler Jade Ohlhauser
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/jadeohl/linkmd
Hilfeseite URL https://github.com/jadeohl/linkmd
URL der Datenschutzrichtlinien-Seite https://github.com/jadeohl/linkmd/blob/main/privacy-policy.md
Unterstützte Sprachen 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."
        }
    }
}