Link-Md

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

Vad är Link-Md?

Link-Md är en Chrome-tillägg utvecklad av Jade Ohlhauser, och dess huvudfunktion är "Create a markdown link of the current page with quoted text.".

Tilläggsskärmbilder

screenshot

Ladda ner Link-Md-förlängningens CRX-fil

Ladda ner Link-Md-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Link-Md Link-Md
ID nfjkoojhgklbbnlonpdplbdjkgoemgod
Officiell webbadress https://chromewebstore.google.com/detail/link-md/nfjkoojhgklbbnlonpdplbdjkgoemgod
Beskrivning Create a markdown link of the current page with quoted text.
Filstorlek 11.76 KB
Antal Installationer 302
Aktuell Version 1.3
Senast Uppdaterad 2022-11-17
Publiceringsdatum 2021-12-07
Betyg 5.00/5 Totalt 7 Betyg
Utvecklare Jade Ohlhauser
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/jadeohl/linkmd
Hjälpsida URL https://github.com/jadeohl/linkmd
URL till Sekretesspolicy Sidan https://github.com/jadeohl/linkmd/blob/main/privacy-policy.md
Stödda Språk 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."
        }
    }
}