PixPeeker

Hover Over links to see images overlaid on current page

PixPeeker란 무엇입니까?

PixPeeker은(는) howlowck에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Hover Over links to see images overlaid on current page"입니다.

확장 프로그램 스크린샷

screenshot

PixPeeker 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        An extension for easy viewing when on image-centered sharing sites like reddit as it loads and renders the images on the current page when you hover over the link.

The extension works well with Imgur and Livememe.

Supports links that link to jpeg, png, and gif as well.

Hover over any text links or image links, you should see the image on the right upper corner.

No ad injections of course.  All the code is open source on github.                    

확장 프로그램 기본 정보

이름 PixPeeker PixPeeker
ID lacjlgodidoaogaoldfodclplagkhegl
공식 URL https://chrome.google.com/webstore/detail/pixpeeker/lacjlgodidoaogaoldfodclplagkhegl
설명 Hover Over links to see images overlaid on current page
파일 크기 51.43 KB
설치 횟수 12
현재 버전 0.0.6
최근 업데이트 2014-01-13
출시 날짜 2014-01-13
평점 5.00/5 총 1 개의 평점
개발자 howlowck
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/howlowck/pixpeek
도움말 페이지 URL https://github.com/howlowck/pixpeek/issues/new
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "0.0.6",
    "name": "PixPeeker",
    "description": "Hover Over links to see images overlaid on current page",
    "browser_action": {
        "default_icon": "media\/on.png",
        "default_title": "PixPeeker-Enabled"
    },
    "permissions": [
        "webNavigation"
    ],
    "background": {
        "scripts": [
            "events.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "app.js"
            ]
        }
    ]
}