Copy Hyperlink Text
An extension to copy the text content of hyperlinks (text content)
Apa itu Copy Hyperlink Text?
Copy Hyperlink Text adalah ekstensi Chrome yang dikembangkan oleh chrisblupodev, dan fitur utamanya adalah "An extension to copy the text content of hyperlinks (text content)".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Copy Hyperlink Text
Unduh file ekstensi Copy Hyperlink Text dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | |
ID | fdodcolnmmcdbpmodjomckomehboeojk |
URL Resmi | https://chrome.google.com/webstore/detail/copy-hyperlink-text/fdodcolnmmcdbpmodjomckomehboeojk |
Deskripsi | An extension to copy the text content of hyperlinks (text content) |
Ukuran File | 1.03 MB |
Jumlah Instalasi | 736 |
Versi Saat Ini | 1.3.2 |
Terakhir Diperbarui | 2014-05-24 |
Tanggal Publikasi | 2014-05-24 |
Penilaian | 1.73/5 Total 11 Penilaian |
Pengembang | chrisblupodev |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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 } |