Link-Md
Create a markdown link of the current page with quoted text.
Link-Mdคืออะไร?
Link-Md เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jade Ohlhauser และคุณลักษณะหลักของมันคือ "Create a markdown link of the current page with quoted text."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Link-Md
ดาวน์โหลดไฟล์ส่วนขยาย Link-Md ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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. ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | nfjkoojhgklbbnlonpdplbdjkgoemgod |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/link-md/nfjkoojhgklbbnlonpdplbdjkgoemgod |
| คำอธิบาย | Create a markdown link of the current page with quoted text. |
| ขนาดไฟล์ | 11.76 KB |
| จำนวนการติดตั้ง | 302 |
| เวอร์ชันปัจจุบัน | 1.3 |
| อัปเดตครั้งล่าสุด | 2022-11-17 |
| วันที่เผยแพร่ | 2021-12-07 |
| คะแนน | 5.00/5 รวมทั้งหมด 7 คะแนน |
| ผู้พัฒนา | Jade Ohlhauser |
| อีเมล | [email protected] |
| ประเภทการชำระเงิน | free |
| เว็บไซต์ส่วนขยาย | https://github.com/jadeohl/linkmd |
| URL หน้าช่วยเหลือ | https://github.com/jadeohl/linkmd |
| URL หน้านโยบายความเป็นส่วนตัว | https://github.com/jadeohl/linkmd/blob/main/privacy-policy.md |
| ภาษาที่รองรับ | 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."
}
}
} | |