ImagePreviewer

Shows a popup with an image preview when hovering over link.

ImagePreviewer là gì?

ImagePreviewer là một tiện ích mở rộng Chrome được phát triển bởi http://far.whochan.com, và tính năng chính của nó là "Shows a popup with an image preview when hovering over link.".

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

screenshot
screenshot
screenshot

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

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

                        This extension shows a popup with an image preview when hovering over link that points to an image file or a page with an image. 

= ##### W A R N I N G #####

This extension uses LinkFilterAPI on LinkRedirector. If you use this, you MUST install LinkRedirector.

= Usage

Move the cursor and hover over a link to the image, then the popup will be appear. Hover out the link or click the popup, then it disappeares.

It is judged with filters of LinkFilterAPI on LinkRedirector whether it is a link to the image.                    

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

Tên ImagePreviewer ImagePreviewer
ID fkkeambgnadnbaopfhcgbofmjhndmecd
URL Chính Thức https://chrome.google.com/webstore/detail/imagepreviewer/fkkeambgnadnbaopfhcgbofmjhndmecd
Mô tả Shows a popup with an image preview when hovering over link.
Kích Thước Tệp 188 KB
Số Lần Cài Đặt 2,000
Phiên Bản Hiện Tại 5.10.4
Cập Nhật Lần Cuối 2017-12-18
Ngày Phát Hành 2017-12-18
Đánh Giá 4.19/5 Tổng số 52 Đánh Giá
Nhà Phát Triển http://far.whochan.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://far.whochan.com/wlog.cgi/ImagePreviewer
URL Trang Trợ Giúp https://twitter.com/intent/tweet?screen_name=whochan_com&hashtags=ImagePreviewer
URL Trang Chính Sách Bảo Mật http://far.whochan.com/wlog.cgi/Privacy%20Policy
Ngôn Ngữ Được Hỗ Trợ en,ru,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ImagePreviewer",
    "version": "5.10.4",
    "manifest_version": 2,
    "default_locale": "en",
    "description": "__MSG_DESCRIPTION__",
    "homepage_url": "http:\/\/far.whochan.com\/",
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "64": "icons\/icon64.png",
        "128": "icons\/icon96.png"
    },
    "background": {
        "page": "index.html"
    },
    "options_ui": {
        "chrome_style": false,
        "open_in_tab": true,
        "page": "options.html"
    },
    "page_action": {
        "default_title": "ImagePreviewer",
        "default_icon": "buttons\/enabled.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "notifications",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "tabs"
    ],
    "content_scripts": [
        {
            "run_at": "document_idle",
            "all_frames": false,
            "matches": [
                ""
            ],
            "js": [
                "lib\/WHO.extension.client.js",
                "includes\/api.LinkFilter.js",
                "includes\/usoCommon.js",
                "includes\/usoImagePreviewer.js",
                "includes\/WHO.activate.js"
            ]
        }
    ]
}