RedditInfinity

Simple, lightweight infinite scrolling for reddit

Что такое RedditInfinity?

RedditInfinity - это расширение Chrome, разработанное https://devinrousso.com, и его основная функция - "Simple, lightweight infinite scrolling for reddit".

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

screenshot
screenshot

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

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

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

                        Ever browse Reddit and find yourself annoyed at having to click the "next" button?  If so, please install RedditInfinity.

RedditInfinity is a lightweight extension targeted at "https://www.reddit.com/*" pages that will automatically load the next page when you have scrolled half way down the page.  No more clicking, just scroll.


Version 1.0:
 - Created Extension
 - Infinite scroll will only work on pages that contain a "next" link                    

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

Название RedditInfinity RedditInfinity
ID klldlkapcnpaanaeamibkgaljpblgkic
Официальный URL https://chromewebstore.google.com/detail/redditinfinity/klldlkapcnpaanaeamibkgaljpblgkic
Описание Simple, lightweight infinite scrolling for reddit
Размер файла 44.01 KB
Количество установок 168
Текущая Версия 1.0.4
Последнее Обновление 2016-08-19
Дата публикации 2016-08-19
Рейтинг 4.67/5 Всего 3 оценок
Разработчик https://devinrousso.com
Тип оплаты free
URL страницы помощи https://github.com/dcrousso/RedditInfinity/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "version": "1.0.4",
    "default_locale": "en",
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.reddit.com\/*",
                "https:\/\/*.reddit.com\/*"
            ],
            "js": [
                "scripts\/infinity.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "images\/loading.gif"
    ]
}