Hover Link
When hovering over short url link or any link it will show the final destination URL.
Hover Link란 무엇입니까?
Hover Link은(는) connerb에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "When hovering over short url link or any link it will show the final destination URL."입니다.
확장 프로그램 스크린샷
Hover Link 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Hover Link is a simple extension that allows you to view and copy short URL and normal URL links on websites. For the short URL links it will display their destination URL as well.
확장 프로그램 기본 정보
이름 | |
ID | ggbpdjpocpnohglmhmppdkimpoiklegb |
공식 URL | https://chrome.google.com/webstore/detail/hover-link/ggbpdjpocpnohglmhmppdkimpoiklegb |
설명 | When hovering over short url link or any link it will show the final destination URL. |
파일 크기 | 60.52 KB |
설치 횟수 | 423 |
현재 버전 | 1.0 |
최근 업데이트 | 2014-10-06 |
출시 날짜 | 2014-10-06 |
평점 | 2.44/5 총 9 개의 평점 |
개발자 | connerb |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://www.connerb.com |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Hover Link", "description": "When hovering over short url link or any link it will show the final destination URL.", "version": "1.0", "manifest_version": 2, "icons": { "48": "icons\/48x48.png" }, "background": { "page": "html\/background.html" }, "permissions": [ "*:\/\/*\/*", "storage", "webRequest", "webRequestBlocking" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "js\/jquery-2.1.1.min.js", "js\/script.js" ], "css": [ "css\/script.css" ], "all_frames": false, "run_at": "document_end" } ], "options_page": "html\/options.html", "page_action": { "default_icon": { "19": "icons\/19x19.png" }, "default_title": "Hover Link", "default_popup": "html\/options.html" } } |