Disable Scrolling

This extension allows you to disable scrolling on your page.

Was ist Disable Scrolling?

Disable Scrolling ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "This extension allows you to disable scrolling on your page.".

Erweiterungsscreenshots

screenshot

Disable Scrolling-Erweiterungs-CRX-Datei herunterladen

Laden Sie Disable Scrolling-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Disable Scrolling Disable Scrolling
ID dmjigjnpimhlighaibpchommlmnlkmlg
Offizielle URL https://chromewebstore.google.com/detail/disable-scrolling/dmjigjnpimhlighaibpchommlmnlkmlg
Beschreibung This extension allows you to disable scrolling on your page.
Dateigröße 190 KB
Installationsanzahl 1,077
Aktuelle Version 1.0.0
Letztes Update 2020-06-13
Veröffentlichungsdatum 2020-06-13
Bewertung 3.20/5 Insgesamt 10 Bewertungen
Entwickler Unknown
Zahlungsart free
Erweiterungswebsite https://github.com/ysun62/Disable-Scrolling-Extension
Unterstützte Sprachen 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"
    ]
}