Hover Link

When hovering over short url link or any link it will show the final destination URL.

Hover Link là gì?

Hover Link là một tiện ích mở rộng Chrome được phát triển bởi connerb, và tính năng chính của nó là "When hovering over short url link or any link it will show the final destination URL.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Hover Link

Tải xuống các tệp mở rộng Hover Link dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Hover Link Hover Link
ID ggbpdjpocpnohglmhmppdkimpoiklegb
URL Chính Thức https://chrome.google.com/webstore/detail/hover-link/ggbpdjpocpnohglmhmppdkimpoiklegb
Mô tả When hovering over short url link or any link it will show the final destination URL.
Kích Thước Tệp 60.52 KB
Số Lần Cài Đặt 423
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2014-10-06
Ngày Phát Hành 2014-10-06
Đánh Giá 2.44/5 Tổng số 9 Đánh Giá
Nhà Phát Triển connerb
Loại Thanh Toán free
Trang Web Mở Rộng http://www.connerb.com
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}