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ファイルをダウンロード

Reddit Image Preview拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
    ]
}