Disable Scrolling

This extension allows you to disable scrolling on your page.

What is Disable Scrolling?

Disable Scrolling is a Chrome extension developed by Unknown, and its main feature is "This extension allows you to disable scrolling on your page.".

Extension Screenshots

screenshot

Download Disable Scrolling Extension CRX File

Download Disable Scrolling extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Disable Scrolling Disable Scrolling
ID dmjigjnpimhlighaibpchommlmnlkmlg
Official URL https://chromewebstore.google.com/detail/disable-scrolling/dmjigjnpimhlighaibpchommlmnlkmlg
Description This extension allows you to disable scrolling on your page.
File Size 190 KB
Installation Count 1,077
Current Version 1.0.0
Last Updated 2020-06-13
Publish Date 2020-06-13
Rating 3.20/5 Total 10 Ratings
Developer Unknown
Payment Type free
Extension Website https://github.com/ysun62/Disable-Scrolling-Extension
Supported Languages 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"
    ]
}