ImagePreviewer

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

什麼是ImagePreviewer?

ImagePreviewer是由http://far.whochan.com開發的Chrome擴展程式,該擴展的主要功能是“Shows a popup with an image preview when hovering over link.”。

擴展截圖

screenshot
screenshot
screenshot

下載ImagePreviewer擴展crx文件

下載ImagePreviewer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 ImagePreviewer ImagePreviewer
ID fkkeambgnadnbaopfhcgbofmjhndmecd
官方網址 https://chrome.google.com/webstore/detail/imagepreviewer/fkkeambgnadnbaopfhcgbofmjhndmecd
簡介 Shows a popup with an image preview when hovering over link.
檔案大小 188 KB
安裝次數 2,000
目前版本 5.10.4
更新時間 2017-12-18
上架時間 2017-12-18
評分 4.19/5 共 52 次評分
開發者 http://far.whochan.com
電子郵箱 [email protected]
付費類型 free
擴展官網 http://far.whochan.com/wlog.cgi/ImagePreviewer
說明頁面URL https://twitter.com/intent/tweet?screen_name=whochan_com&hashtags=ImagePreviewer
隱私政策頁面URL http://far.whochan.com/wlog.cgi/Privacy%20Policy
支援的語言 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"
            ]
        }
    ]
}