Copy Hyperlink Text
An extension to copy the text content of hyperlinks (text content)
什麼是Copy Hyperlink Text?
Copy Hyperlink Text是由chrisblupodev開發的Chrome擴展程式,該擴展的主要功能是“An extension to copy the text content of hyperlinks (text content)”。
擴展截圖
下載Copy Hyperlink Text擴展crx文件
下載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 |
官方網址 | 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 } |