Link Preview

Generates preview window of link that follows mouse when hovering specific elements

Link Preview là gì?

Link Preview là một tiện ích mở rộng Chrome được phát triển bởi dapoDev, và tính năng chính của nó là "Generates preview window of link that follows mouse when hovering specific elements".

Ả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 Link Preview

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

                                            

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

Tên Link Preview Link Preview
ID bjoabjghhaegfioipdfaggpecmegfelp
URL Chính Thức https://chrome.google.com/webstore/detail/link-preview/bjoabjghhaegfioipdfaggpecmegfelp
Mô tả Generates preview window of link that follows mouse when hovering specific elements
Kích Thước Tệp 39.05 KB
Số Lần Cài Đặt 230
Phiên Bản Hiện Tại 1.3
Cập Nhật Lần Cuối 2017-12-15
Ngày Phát Hành 2017-12-15
Đánh Giá 1.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển dapoDev
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/emdap/LinkPreview
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Link Preview",
    "description": "Generates preview window of link that follows mouse when hovering specific elements",
    "version": "1.3",
    "background": {
        "scripts": [
            "thirdparty\/jquery.min.js"
        ]
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "file:\/\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.kijiji.ca\/b*",
                "https:\/\/www.kijiji.ca\/b*"
            ],
            "js": [
                "thirdparty\/jquery.min.js",
                "webSpecific\/kijiji.js",
                "webSpecific\/createFields.js",
                "previewWindow.js",
                "bindings.js",
                "main.js"
            ],
            "css": [
                "tailDiv.css"
            ],
            "run_at": "document_start"
        }
    ]
}