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