Create Link
Copy current page URL to clipboard in various formats.
Create Linkคืออะไร?
Create Link เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ku และคุณลักษณะหลักของมันคือ "Copy current page URL to clipboard in various formats."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Create Link
ดาวน์โหลดไฟล์ส่วนขยาย Create Link ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
(Tested on OSX, WindowsXP, Windows7/64bit) Make HTML link tag easily like Firefox addon Make Link. Copy current page title and URL to clipboard in various formats. *plain text ([page title] [page URL]) *HTML link ([page title] *markdown *mediawiki In extension options page, you can configure formats and shortcut key. Source code is available at http://github.com/ku/CreateLink Tweet @ku if something is wrong with Create Link
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Create Link |
ID | gcmghdmnkfdbncmnmlkkglmnnhagajbm |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/create-link/gcmghdmnkfdbncmnmlkkglmnnhagajbm |
คำอธิบาย | Copy current page URL to clipboard in various formats. |
ขนาดไฟล์ | 32.25 KB |
จำนวนการติดตั้ง | 40,175 |
เวอร์ชันปัจจุบัน | 0.5.7 |
อัปเดตครั้งล่าสุด | 2022-01-12 |
วันที่เผยแพร่ | 2017-07-25 |
คะแนน | 4.25/5 รวมทั้งหมด 166 คะแนน |
ผู้พัฒนา | ku |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | http://twitter.com/ku/ |
URL หน้าช่วยเหลือ | http://github.com/ku/CreateLink |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Create Link", "version": "0.5.7", "manifest_version": 3, "background": { "service_worker": "js\/service-worker.js" }, "action": { "default_icon": "icon64.png", "default_title": "Create Link", "default_popup": "popup.html" }, "description": "Copy current page URL to clipboard in various formats.", "icons": { "128": "icon128.png", "16": "icon16.png", "32": "icon32.png", "64": "icon64.png" }, "options_page": "options.html", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/\/*\/*" ], "css": [], "js": [ "js\/content.js" ], "run_at": "document_end", "all_frames": false } ], "commands": { "current-tab-link": { "description": "Current tab in default format" } }, "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "permissions": [ "contextMenus", "storage", "clipboardWrite" ] } |