Copy Link With Title
This extension copies the current tab's link and title, formatted into Markdown, HTML, or a custom format.
Copy Link With Titleคืออะไร?
Copy Link With Title เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Paul Cohn และคุณลักษณะหลักของมันคือ "This extension copies the current tab's link and title, formatted into Markdown, HTML, or a custom format."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Copy Link With Title
ดาวน์โหลดไฟล์ส่วนขยาย Copy Link With Title ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
* Copy a link with the title for pasting into a notetaking app for clearer notes * Copy as HTML and paste into code * Copy as Markdown and paste into Reddit or Github * Define your own format for whatever crazy schemes you have Update 2021/08/25: * Updated icon for better visibility in dark mode. Update 2020/01/17: * Newlines work!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Copy Link With Title |
ID | cfbjnjeaoamknmdojhgcblkebcphmcei |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/copy-link-with-title/cfbjnjeaoamknmdojhgcblkebcphmcei |
คำอธิบาย | This extension copies the current tab's link and title, formatted into Markdown, HTML, or a custom format. |
ขนาดไฟล์ | 58.18 KB |
จำนวนการติดตั้ง | 1,412 |
เวอร์ชันปัจจุบัน | 1.0.2 |
อัปเดตครั้งล่าสุด | 2021-08-25 |
วันที่เผยแพร่ | 2020-01-16 |
คะแนน | 3.54/5 รวมทั้งหมด 13 คะแนน |
ผู้พัฒนา | Paul Cohn |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://twitter.com/paulsterr |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Copy Link With Title", "description": "This extension copies the current tab's link and title, formatted into Markdown, HTML, or a custom format.", "version": "1.0.2", "browser_action": { "default_icon": "icon.png" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "options_ui": { "page": "options.html", "chrome_style": true }, "permissions": [ "activeTab", "storage" ] } |