Disable Scrolling

This extension allows you to disable scrolling on your page.

Qu'est-ce que Disable Scrolling ?

Disable Scrolling est une extension Chrome développée par Unknown, et sa fonction principale est "This extension allows you to disable scrolling on your page.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Disable Scrolling

Téléchargez les fichiers d'extension Disable Scrolling au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Disable Scrolling Disable Scrolling
ID dmjigjnpimhlighaibpchommlmnlkmlg
URL Officiel https://chromewebstore.google.com/detail/disable-scrolling/dmjigjnpimhlighaibpchommlmnlkmlg
Description This extension allows you to disable scrolling on your page.
Taille du Fichier 190 KB
Nombre d'Installations 1,077
Version Actuelle 1.0.0
Dernière Mise à Jour 2020-06-13
Date de Publication 2020-06-13
Évaluation 3.20/5 Total 10 Évaluations
Développeur Unknown
Type de Paiement free
Site Web de l'Extension https://github.com/ysun62/Disable-Scrolling-Extension
Langues Prises en Charge 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"
    ]
}