Copy HTML Link
Copy link to the current page (with page title) to the clipboard.
Copy HTML Linkคืออะไร?
Copy HTML Link เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Paul Irish และคุณลักษณะหลักของมันคือ "Copy link to the current page (with page title) to the clipboard."
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Copy HTML Link
ดาวน์โหลดไฟล์ส่วนขยาย Copy HTML Link ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Click once for HTML link and text fallback. Double-click to copy text as markdown. Also available via keyboard shortcut: * Alt+Shift+C on Windows / Linux * Ctrl+Shift+C on Mac (Protip: Tapping the C twice will "double-click") Source: https://github.com/paulirish/CopyLink-extension
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | ipefndfjbbonoeiaggfhibcnimekokjl |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/copy-html-link/ipefndfjbbonoeiaggfhibcnimekokjl |
คำอธิบาย | Copy link to the current page (with page title) to the clipboard. |
ขนาดไฟล์ | 17.37 KB |
จำนวนการติดตั้ง | 315 |
เวอร์ชันปัจจุบัน | 1.2 |
อัปเดตครั้งล่าสุด | 2016-11-05 |
วันที่เผยแพร่ | 2016-11-05 |
คะแนน | 4.75/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | Paul Irish |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/paulirish/CopyLink-extension |
URL หน้าช่วยเหลือ | https://github.com/paulirish/CopyLink-extension/issues |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "background": { "page": "background.html", "persistent": false }, "browser_action": { "default_icon": "icon64.png", "default_title": "Copy HTML Link" }, "description": "Copy link to the current page (with page title) to the clipboard.", "icons": { "128": "icon128.png", "16": "icon16.png", "32": "icon32.png", "64": "icon64.png" }, "name": "Copy HTML Link", "permissions": [ "activeTab", "clipboardWrite", "contextMenus" ], "version": "1.2", "commands": { "copy-html-link": { "suggested_key": { "default": "Alt+Shift+C", "mac": "MacCtrl+Shift+C" }, "description": "Copy link of the page (with title)" } } } |