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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
            ]
        }
    ]
}