Disable AutoScroll

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

Hvad er Disable AutoScroll?

Disable AutoScroll er en Chrome-udvidelse udviklet af Slackwise, og dens hovedfunktion er "Disables middle-click autoscrolling (often confused with 'smooth scrolling')".

Udvidelsesskærmbilleder

screenshot

Download Disable AutoScroll-udvidelses-CRX-fil

Download Disable AutoScroll-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Disable AutoScroll Disable AutoScroll
ID ggakmjgkpoeoiicikoohgojkoehmnhdc
Officiel URL https://chromewebstore.google.com/detail/disable-autoscroll/ggakmjgkpoeoiicikoohgojkoehmnhdc
Beskrivelse Disables middle-click autoscrolling (often confused with 'smooth scrolling')
Filstørrelse 13.33 KB
Antal Installationer 1,455
Nuværende Version 1.2
Senest Opdateret 2024-01-01
Udgivelsesdato 2022-07-14
Bedømmelse 4.58/5 Samlet 24 Bedømmelser
Udvikler Slackwise
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/Slackwise/disable-autoscroll-webextension
Hjælpeside-URL https://github.com/Slackwise/disable-autoscroll-webextension/issues
Understøttede Sprog 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"
            ]
        }
    ]
}