Link-Md
Create a markdown link of the current page with quoted text.
Cos'è Link-Md?
Link-Md è un'estensione di Chrome sviluppata da Jade Ohlhauser, e la sua funzione principale è "Create a markdown link of the current page with quoted text.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Link-Md
Scarica i file di estensione Link-Md in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | nfjkoojhgklbbnlonpdplbdjkgoemgod |
| URL Ufficiale | https://chromewebstore.google.com/detail/link-md/nfjkoojhgklbbnlonpdplbdjkgoemgod |
| Descrizione | Create a markdown link of the current page with quoted text. |
| Dimensione del File | 11.76 KB |
| Conteggio Installazioni | 302 |
| Versione Corrente | 1.3 |
| Ultimo Aggiornamento | 2022-11-17 |
| Data di Pubblicazione | 2021-12-07 |
| Valutazione | 5.00/5 Totale 7 Valutazioni |
| Sviluppatore | Jade Ohlhauser |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/jadeohl/linkmd |
| URL della Pagina di Aiuto | https://github.com/jadeohl/linkmd |
| URL della Pagina della Politica sulla Privacy | https://github.com/jadeohl/linkmd/blob/main/privacy-policy.md |
| Lingue Supportate | 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."
}
}
} | |