Reddit Image Preview

Previewing images on reddit is faster than ever.

Что такое Reddit Image Preview?

Reddit Image Preview - это расширение Chrome, разработанное Alexandru Stamp, и его основная функция - "Previewing images on reddit is faster than ever.".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Reddit Image Preview

Скачайте файлы расширений 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
Электронная почта [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"
    ]
}