Disable AutoScroll

Disables middle-click autoscrolling (often confused with 'smooth scrolling')

Qu'est-ce que Disable AutoScroll ?

Disable AutoScroll est une extension Chrome développée par Slackwise, et sa fonction principale est "Disables middle-click autoscrolling (often confused with 'smooth scrolling')".

Captures d'Écran de l'Extension

screenshot

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

Téléchargez les fichiers d'extension Disable AutoScroll 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

                        All this extension does is disable the middle-click "AutoScroll" feature so you don't accidentally activate it when trying to middle-click a link with your scroll-wheel to open a link in a new tab.

The screenshot is of the ENTIRE source-code, and it's all on GitHub as well.                    

Informations de Base sur l'Extension

Nom Disable AutoScroll Disable AutoScroll
ID ggakmjgkpoeoiicikoohgojkoehmnhdc
URL Officiel https://chromewebstore.google.com/detail/disable-autoscroll/ggakmjgkpoeoiicikoohgojkoehmnhdc
Description Disables middle-click autoscrolling (often confused with 'smooth scrolling')
Taille du Fichier 13.33 KB
Nombre d'Installations 1,455
Version Actuelle 1.2
Dernière Mise à Jour 2024-01-01
Date de Publication 2022-07-14
Évaluation 4.58/5 Total 24 Évaluations
Développeur Slackwise
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/Slackwise/disable-autoscroll-webextension
URL de la Page d'Aide https://github.com/Slackwise/disable-autoscroll-webextension/issues
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Disable AutoScroll",
    "short_name": "Disable AutoScroll",
    "description": "Disables middle-click autoscrolling (often confused with 'smooth scrolling')",
    "version": "1.2",
    "author": "Slackwise",
    "icons": {
        "48": "disable-autoscroll-48.png",
        "125": "disable-autoscroll-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "disable-autoscroll.js"
            ]
        }
    ]
}