Link-Md
Create a markdown link of the current page with quoted text.
Apa itu Link-Md?
Link-Md adalah ekstensi Chrome yang dikembangkan oleh Jade Ohlhauser, dan fitur utamanya adalah "Create a markdown link of the current page with quoted text.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Link-Md
Unduh file ekstensi Link-Md dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Link-Md |
ID | nfjkoojhgklbbnlonpdplbdjkgoemgod |
URL Resmi | https://chromewebstore.google.com/detail/link-md/nfjkoojhgklbbnlonpdplbdjkgoemgod |
Deskripsi | Create a markdown link of the current page with quoted text. |
Ukuran File | 11.76 KB |
Jumlah Instalasi | 302 |
Versi Saat Ini | 1.3 |
Terakhir Diperbarui | 2022-11-17 |
Tanggal Publikasi | 2021-12-07 |
Penilaian | 5.00/5 Total 7 Penilaian |
Pengembang | Jade Ohlhauser |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/jadeohl/linkmd |
URL Halaman Bantuan | https://github.com/jadeohl/linkmd |
URL Halaman Kebijakan Privasi | https://github.com/jadeohl/linkmd/blob/main/privacy-policy.md |
Bahasa yang Didukung | 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." } } } |