Disable AutoScroll

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

Wat is Disable AutoScroll?

Disable AutoScroll is een Chrome-extensie ontwikkeld door Slackwise, en de belangrijkste functie is "Disables middle-click autoscrolling (often confused with 'smooth scrolling')".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Disable AutoScroll

Download Disable AutoScroll-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

                        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.                    

Basisinformatie over de Extensie

Naam Disable AutoScroll Disable AutoScroll
ID ggakmjgkpoeoiicikoohgojkoehmnhdc
Officiële URL https://chromewebstore.google.com/detail/disable-autoscroll/ggakmjgkpoeoiicikoohgojkoehmnhdc
Beschrijving Disables middle-click autoscrolling (often confused with 'smooth scrolling')
Bestandsgrootte 13.33 KB
Aantal Installaties 1,455
Huidige Versie 1.2
Laatst Bijgewerkt 2024-01-01
Publicatiedatum 2022-07-14
Beoordeling 4.58/5 Totaal 24 Beoordelingen
Ontwikkelaar Slackwise
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/Slackwise/disable-autoscroll-webextension
Help Pagina-URL https://github.com/Slackwise/disable-autoscroll-webextension/issues
Ondersteunde Talen 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"
            ]
        }
    ]
}