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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 } |