LinkTips

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

O que é LinkTips?

LinkTips é uma extensão do Chrome desenvolvida por Nate Ribose, e sua principal característica é "Show URLs in all link title tooltips and allow custom title tooltip appearance.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão LinkTips

Baixe arquivos de extensão LinkTips no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome LinkTips LinkTips
ID eihlofapoahdelmmdphpobogokfmdmbl
URL Oficial https://chromewebstore.google.com/detail/linktips/eihlofapoahdelmmdphpobogokfmdmbl
Descrição Show URLs in all link title tooltips and allow custom title tooltip appearance.
Tamanho do Arquivo 50.59 KB
Contagem de Instalações 220
Versão Atual 0.1.1
Última Atualização 2014-01-20
Data de Publicação 2014-01-19
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor Nate Ribose
Tipo de Pagamento free
Idiomas Suportados 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"
        ]
    }
}