Copy Hyperlink Text
An extension to copy the text content of hyperlinks (text content)
Copy Hyperlink Textคืออะไร?
Copy Hyperlink Text เป็นส่วนขยายของ Chrome ที่พัฒนาโดย chrisblupodev และคุณลักษณะหลักของมันคือ "An extension to copy the text content of hyperlinks (text content)"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Copy Hyperlink Text
ดาวน์โหลดไฟล์ส่วนขยาย Copy Hyperlink Text ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
An extension to copy the text content of hyperlinks with right click (outerText). When a user invokes the context menu, right clicks, and selects item "Copy Hyperlink Text" chrome will open a prompt dialog so the user may manually copy the text within a hyperlink For example> GOOGLE And also GOOGLE Among other tag combinations Copy Hyperlink Text will prompt the user to copy the text "GOOGLE" in a chrome prompt dialog - Copy Hyperlink Text uses the google chrome prompt dialog allowing the user to manually copy text - Copy Hyperlink Text does not automatically copy to the clipboard on a native operating system (it's a sandbox javascript limitation) - I will automatically copy to the native clipboard once javascript has a standardized way to access the operating system clipboard - Copy Hyperlink Text does not copy text inside or nested in
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | fdodcolnmmcdbpmodjomckomehboeojk |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/copy-hyperlink-text/fdodcolnmmcdbpmodjomckomehboeojk |
คำอธิบาย | An extension to copy the text content of hyperlinks (text content) |
ขนาดไฟล์ | 1.03 MB |
จำนวนการติดตั้ง | 736 |
เวอร์ชันปัจจุบัน | 1.3.2 |
อัปเดตครั้งล่าสุด | 2014-05-24 |
วันที่เผยแพร่ | 2014-05-24 |
คะแนน | 1.73/5 รวมทั้งหมด 11 คะแนน |
ผู้พัฒนา | chrisblupodev |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Copy Hyperlink Text", "description": "An extension to copy the text content of hyperlinks (text content<\/a>)", "version": "1.3.2", "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "contextMenus" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content_script.js" ], "run_at": "document_end" } ], "icons": { "16": "16.png", "48": "48.png", "128": "128.png" }, "manifest_version": 2 } |