Disable Scrolling

This extension allows you to disable scrolling on your page.

Wat is Disable Scrolling?

Disable Scrolling is een Chrome-extensie ontwikkeld door Unknown, en de belangrijkste functie is "This extension allows you to disable scrolling on your page.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Disable Scrolling

Download Disable Scrolling-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Disable Scrolling Disable Scrolling
ID dmjigjnpimhlighaibpchommlmnlkmlg
Officiële URL https://chromewebstore.google.com/detail/disable-scrolling/dmjigjnpimhlighaibpchommlmnlkmlg
Beschrijving This extension allows you to disable scrolling on your page.
Bestandsgrootte 190 KB
Aantal Installaties 1,077
Huidige Versie 1.0.0
Laatst Bijgewerkt 2020-06-13
Publicatiedatum 2020-06-13
Beoordeling 3.20/5 Totaal 10 Beoordelingen
Ontwikkelaar Unknown
Betalingswijze free
Extensiewebsite https://github.com/ysun62/Disable-Scrolling-Extension
Ondersteunde Talen 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"
    ]
}