Disable Scrolling

This extension allows you to disable scrolling on your page.

Что такое Disable Scrolling?

Disable Scrolling - это расширение Chrome, разработанное Unknown, и его основная функция - "This extension allows you to disable scrolling on your page.".

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

screenshot

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

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

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

                        Ever tried searching for a word in the current viewport, but the Find Bar takes you to "random" sections of the page, making you lose track of the section you were just reading?

Try using this chrome extension to temporarily disable scrolling of the current page before you use Find, so that you can stay where you are while Find searches all the instances for you.

* Note: please refresh any pre-existing tabs after installation.                    

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

Название Disable Scrolling Disable Scrolling
ID dmjigjnpimhlighaibpchommlmnlkmlg
Официальный URL https://chromewebstore.google.com/detail/disable-scrolling/dmjigjnpimhlighaibpchommlmnlkmlg
Описание This extension allows you to disable scrolling on your page.
Размер файла 190 KB
Количество установок 1,077
Текущая Версия 1.0.0
Последнее Обновление 2020-06-13
Дата публикации 2020-06-13
Рейтинг 3.20/5 Всего 10 оценок
Разработчик Unknown
Тип оплаты free
Официальный сайт расширения https://github.com/ysun62/Disable-Scrolling-Extension
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Disable Scrolling",
    "description": "This extension allows you to disable scrolling on your page.",
    "version": "1.0.0",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "index.html"
    },
    "permissions": [
        "storage",
        "activeTab"
    ]
}