Link-Md

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

Qu'est-ce que Link-Md ?

Link-Md est une extension Chrome développée par Jade Ohlhauser, et sa fonction principale est "Create a markdown link of the current page with quoted text.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Link-Md

Téléchargez les fichiers d'extension Link-Md au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Link-Md Link-Md
ID nfjkoojhgklbbnlonpdplbdjkgoemgod
URL Officiel https://chromewebstore.google.com/detail/link-md/nfjkoojhgklbbnlonpdplbdjkgoemgod
Description Create a markdown link of the current page with quoted text.
Taille du Fichier 11.76 KB
Nombre d'Installations 302
Version Actuelle 1.3
Dernière Mise à Jour 2022-11-17
Date de Publication 2021-12-07
Évaluation 5.00/5 Total 7 Évaluations
Développeur Jade Ohlhauser
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/jadeohl/linkmd
URL de la Page d'Aide https://github.com/jadeohl/linkmd
URL de la Page de Politique de Confidentialité https://github.com/jadeohl/linkmd/blob/main/privacy-policy.md
Langues Prises en Charge 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."
        }
    }
}