Link Preview

Right click on a link to quickly preview its content in a nice summary card, without leaving the page.

Link Preview là gì?

Link Preview là một tiện ích mở rộng Chrome được phát triển bởi http://codeinchaos.com, và tính năng chính của nó là "Right click on a link to quickly preview its content in a nice summary card, without leaving the page.".

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

                        Right click on a link to quickly preview its content in a nice summary card, without leaving the page!

NOTE: there is currently a bug on HTTPS pages with Embedly Cards, we are working on an update with Embedly's help!                    

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

Tên Link Preview Link Preview
ID akccjphfbbgdhlmpeglpipbapnddbkof
URL Chính Thức https://chrome.google.com/webstore/detail/link-preview/akccjphfbbgdhlmpeglpipbapnddbkof
Mô tả Right click on a link to quickly preview its content in a nice summary card, without leaving the page.
Kích Thước Tệp 18.83 KB
Số Lần Cài Đặt 373
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2014-08-30
Ngày Phát Hành 2014-08-30
Đánh Giá 1.38/5 Tổng số 8 Đánh Giá
Nhà Phát Triển http://codeinchaos.com
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/codeinchaos/chrome-link-preview/
URL Trang Trợ Giúp https://github.com/codeinchaos/chrome-link-preview/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.0.0",
    "manifest_version": 2,
    "name": "Link Preview",
    "description": "Right click on a link to quickly preview its content in a nice summary card, without leaving the page.",
    "author": "Ahmad Nassri  (http:\/\/ahmadnassri.com)",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "background": {
        "scripts": [
            "main.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "modal.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "contextMenus",
        "https:\/\/cdn.embedly.com\/widgets\/platform.js"
    ],
    "content_security_policy": "script-src 'self' https:\/\/cdn.embedly.com\/widgets\/; object-src 'self'",
    "web_accessible_resources": [
        "popup.html"
    ]
}