Disable AutoScroll

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

Vad är Disable AutoScroll?

Disable AutoScroll är en Chrome-tillägg utvecklad av Slackwise, och dess huvudfunktion är "Disables middle-click autoscrolling (often confused with 'smooth scrolling')".

Tilläggsskärmbilder

screenshot

Ladda ner Disable AutoScroll-förlängningens CRX-fil

Ladda ner Disable AutoScroll-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Disable AutoScroll Disable AutoScroll
ID ggakmjgkpoeoiicikoohgojkoehmnhdc
Officiell webbadress https://chromewebstore.google.com/detail/disable-autoscroll/ggakmjgkpoeoiicikoohgojkoehmnhdc
Beskrivning Disables middle-click autoscrolling (often confused with 'smooth scrolling')
Filstorlek 13.33 KB
Antal Installationer 1,455
Aktuell Version 1.2
Senast Uppdaterad 2024-01-01
Publiceringsdatum 2022-07-14
Betyg 4.58/5 Totalt 24 Betyg
Utvecklare Slackwise
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/Slackwise/disable-autoscroll-webextension
Hjälpsida URL https://github.com/Slackwise/disable-autoscroll-webextension/issues
Stödda Språk 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"
            ]
        }
    ]
}