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ファイルをダウンロード

LinkTips拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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"
        ]
    }
}