Reddit Image Preview

Previewing images on reddit is faster than ever.

Reddit Image Preview란 무엇입니까?

Reddit Image Preview은(는) Alexandru Stamp에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Previewing images on reddit is faster than ever."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Reddit Image Preview 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Want to check an image before clicking on the link ?  This is where this extension come to help.

Best extension to use on /r/funny, /r/pcmasterrace, /r/pics , etc.
It supports images provided by imgur.com (90% of reddit.com images), gfycat.com, reddituploads.com(reddit direct upload).

Hover your mouse cursor on a post title where it`s URL(link) is an image to preview it. Image preview is displayed in the middle of the screen. To cancel the preview move the mouse somewhere else. This works on the front page and every subreddit.

To enable or disable the extension, just press the Reddit Image Preview icon in the top left then press disable/enable.

More image providers support soon.

For any questions or problems send an email to : [email protected]                    

확장 프로그램 기본 정보

이름 Reddit Image Preview Reddit Image Preview
ID epkgcgdkdcihbmiapdajdhnkccaggbam
공식 URL https://chromewebstore.google.com/detail/reddit-image-preview/epkgcgdkdcihbmiapdajdhnkccaggbam
설명 Previewing images on reddit is faster than ever.
파일 크기 51.28 KB
설치 횟수 1,066
현재 버전 1.5
최근 업데이트 2016-05-31
출시 날짜 2016-05-31
평점 2.91/5 총 11 개의 평점
개발자 Alexandru Stamp
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Reddit Image Preview",
    "version": "1.5",
    "description": "Previewing images on reddit is faster than ever.",
    "background": {
        "scripts": [
            "jquery-2.2.3.min.js",
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.reddit.com\/*",
                "*:\/\/reddit.com\/*"
            ],
            "js": [
                "jquery-2.2.3.min.js",
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Reddit Image Preview",
        "default_icon": "img-on.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "img-on.png"
    },
    "permissions": [
        "storage"
    ]
}