LinkTips

Show URLs in all link title tooltips and allow custom title tooltip appearance.

LinkTips란 무엇입니까?

LinkTips은(는) Nate Ribose에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Show URLs in all link title tooltips and allow custom title tooltip appearance."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

LinkTips 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Show URLs in all link title tooltips and allow custom title tooltip appearance.

Rather than moving your focus away from the mouse to see the destination of a URL, this will show the URL in a tooltip near the mouse when you hover over a link.

You can either use your system tooltip (default), or specify a custom tooltip (with completely customizable styles using CSS). You may even have all tooltips appear with the custom tooltip style, too!

This is a Free and Open Source extension. Look at the project on GitHub: https://github.com/nmbook/linktips-chrome                    

확장 프로그램 기본 정보

이름 LinkTips LinkTips
ID eihlofapoahdelmmdphpobogokfmdmbl
공식 URL https://chromewebstore.google.com/detail/linktips/eihlofapoahdelmmdphpobogokfmdmbl
설명 Show URLs in all link title tooltips and allow custom title tooltip appearance.
파일 크기 50.59 KB
설치 횟수 220
현재 버전 0.1.1
최근 업데이트 2014-01-20
출시 날짜 2014-01-19
평점 5.00/5 총 2 개의 평점
개발자 Nate Ribose
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "LinkTips",
    "author": "Nate Book ",
    "version": "0.1.1",
    "description": "Show URLs in all link title tooltips and allow custom title tooltip appearance.",
    "icons": {
        "16": "linktips16.png",
        "48": "linktips48.png",
        "128": "linktips128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "linktips.css"
            ],
            "js": [
                "jquery.min.js",
                "linktips.js"
            ]
        }
    ],
    "options_page": "options.html",
    "content_security_policy": "default-src 'none'; style-src 'unsafe-inline'; script-src 'self'",
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}