LinkTips

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

LinkTips là gì?

LinkTips là một tiện ích mở rộng Chrome được phát triển bởi Nate Ribose, và tính năng chính của nó là "Show URLs in all link title tooltips and allow custom title tooltip appearance.".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng LinkTips 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

                        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                    

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

Tên LinkTips LinkTips
ID eihlofapoahdelmmdphpobogokfmdmbl
URL Chính Thức https://chromewebstore.google.com/detail/linktips/eihlofapoahdelmmdphpobogokfmdmbl
Mô tả Show URLs in all link title tooltips and allow custom title tooltip appearance.
Kích Thước Tệp 50.59 KB
Số Lần Cài Đặt 220
Phiên Bản Hiện Tại 0.1.1
Cập Nhật Lần Cuối 2014-01-20
Ngày Phát Hành 2014-01-19
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Nate Ribose
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        ]
    }
}