Lazy Linker

Provides previews to external links, images, and videos in articles when a link is hover over.

Lazy Linker là gì?

Lazy Linker là một tiện ích mở rộng Chrome được phát triển bởi orrybaram, và tính năng chính của nó là "Provides previews to external links, images, and videos in articles when a link is hover over.".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

                        v0.1.6 Long click instead of hover

Have you ever been in the middle of an article and seen a few links that direct you to who knows where? You're usually curious about where it'll take you. Maybe it's a cool supplementary picture, or video. Maybe it's a wikipedia article that helps bolster some facts. If you're like me, you probably never clicked on these links. It's a hassle, and breaks you away from the flow of the article.

This extension grabs whatever's hiding in those links and displays it quickly and seamlessly on the same page of your article. Just long-click over the styled links!                    

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

Tên Lazy Linker Lazy Linker
ID jbjodbggkabkeccacfmeanjekkhbgdhd
URL Chính Thức https://chromewebstore.google.com/detail/lazy-linker/jbjodbggkabkeccacfmeanjekkhbgdhd
Mô tả Provides previews to external links, images, and videos in articles when a link is hover over.
Kích Thước Tệp 54.37 KB
Số Lần Cài Đặt 258
Phiên Bản Hiện Tại 0.1.7
Cập Nhật Lần Cuối 2015-03-13
Ngày Phát Hành 2015-03-13
Đánh Giá 2.83/5 Tổng số 6 Đánh Giá
Nhà Phát Triển orrybaram
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": "Lazy Linker",
    "description": "Provides previews to external links, images, and videos in articles when a link is hover over.",
    "version": "0.1.7",
    "permissions": [
        "*:\/\/*\/*",
        "history"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "css": [
                "css\/main.css"
            ],
            "js": [
                "lib\/jquery.2.0.3.min.js",
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}