Reddit Preload GIFs

Finds GIFs on Reddit and preloads them so that you do not need to wait when you view them

Что такое Reddit Preload GIFs?

Reddit Preload GIFs - это расширение Chrome, разработанное Marcus, и его основная функция - "Finds GIFs on Reddit and preloads them so that you do not need to wait when you view them".

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

screenshot

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

Скачайте файлы расширений Reddit Preload GIFs в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Finds GIFs on Reddit and preloads them so that you do not need to wait when you view them.

Now works with Reddit Enhancement Suites' neverending Reddit feature!                    

Основная информация о расширении

Название Reddit Preload GIFs Reddit Preload GIFs
ID nghfcbekdkjbeichjmohlojmpikchibd
Официальный URL https://chrome.google.com/webstore/detail/reddit-preload-gifs/nghfcbekdkjbeichjmohlojmpikchibd
Описание Finds GIFs on Reddit and preloads them so that you do not need to wait when you view them
Размер файла 13.7 KB
Количество установок 3,954
Текущая Версия 1.3
Последнее Обновление 2013-04-08
Дата публикации 2013-04-08
Рейтинг 4.00/5 Всего 10 оценок
Разработчик Marcus
Тип оплаты free
Официальный сайт расширения https://github.com/marcusds/RedditPreloadGIFs
URL страницы помощи http://www.reddit.com/r/chrome/comments/11tl0f/reddit_preload_gifs_no_more_waiting_when_you_click/
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Finds GIFs on Reddit and preloads them so that you do not need to wait when you view them",
    "name": "Reddit Preload GIFs",
    "permissions": [
        "http:\/\/reddit.com\/*",
        "http:\/\/*.reddit.com\/*"
    ],
    "icons": {
        "48": "48.png",
        "128": "128.png",
        "16": "16.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.reddit.com\/*"
            ],
            "all_frames": true,
            "js": [
                "preload_gifs.js"
            ]
        }
    ],
    "manifest_version": 2,
    "version": "1.3"
}