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.”。

扩展截图

screenshot

下载Hover Link扩展crx文件

下载Hover Link扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Hover Link Hover Link
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"
    }
}