Infinite Scroll Blocker

Stop unintentional scrolling on all websites.

Что такое Infinite Scroll Blocker?

Infinite Scroll Blocker - это расширение Chrome, разработанное https://jcpretorius.com, и его основная функция - "Stop unintentional scrolling on all websites.".

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

screenshot

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

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

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

                        Shows a full screen message when it catches you scrolling and scrolling.

This should work on any website including those with sneaky infinite loading updates, if however it is not working as interned on a specific website please let me know. I have tested it on most of the bigger sites.

This extension does not access, track, or collect any data whatsoever. The only local storage the extension uses is for the local extension settings, these settings do not leave your device.

Change log:
v1.2 - Add "Allowed sites" list, where the reminder is disabled.
v1.1 - Add setting to change reminder message text.                    

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

Название Infinite Scroll Blocker Infinite Scroll Blocker
ID pbpfkabjjkbnenfmpcnkpfiabplihndp
Официальный URL https://chromewebstore.google.com/detail/infinite-scroll-blocker/pbpfkabjjkbnenfmpcnkpfiabplihndp
Описание Stop unintentional scrolling on all websites.
Размер файла 551 KB
Количество установок 286
Текущая Версия 1.2
Последнее Обновление 2021-10-04
Дата публикации 2019-07-06
Рейтинг 3.79/5 Всего 14 оценок
Разработчик https://jcpretorius.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://projects.jcpretorius.com/infinite-scroll-blocker
URL страницы помощи https://twitter.com/jacob_pretorius
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "content_scripts": [
        {
            "js": [
                "InfiniteScrollBlocker.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "icons": {
        "128": "128.ico"
    },
    "author": "Jacob Pretorius",
    "name": "Infinite Scroll Blocker",
    "version": "1.2",
    "homepage_url": "https:\/\/projects.jcpretorius.com\/infinite-scroll-blocker",
    "description": "Stop unintentional scrolling on all websites.",
    "manifest_version": 2,
    "options_page": "settings.html"
}