Linux Scroll Speed Fix

Fix the slow scroll speed in Linux Chrome by setting it to the Windows value

Linux Scroll Speed Fix là gì?

Linux Scroll Speed Fix là một tiện ích mở rộng Chrome được phát triển bởi https://winkit.se, và tính năng chính của nó là "Fix the slow scroll speed in Linux Chrome by setting it to the Windows value".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Linux Scroll Speed Fix

Tải xuống các tệp mở rộng Linux Scroll Speed Fix dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        # Linux Scroll Speed Fix

#### Download: [Chrome web store package](https://chrome.google.com/webstore/detail/linux-scroll-speed-fix/mlboohjioameadaedfjcpemcaangkkbp)

## DESCRIPTION
Fixes the slow scroll speed in Chrome for Linux by emulating the Windows scroll speed when the extension detects Linux. When it detects Windows it will disable itself.

The extension also allows for custom scroll speed values in both Windows and Linux. 

All settings are saved locally in the browser to not mess with syncing between different systems.

## FEATURES
- Automatic "similar-to-Windows" scroll speed in Linux.
- Custom scroll speed settings
- Settings are saved locally in the browser

## CHANGELOG

#### Version 1.7.2
- Fixed Outlook scrolling

#### Version 1.7.1
- Added Outlook 365 to exception list

#### Version 1.7.0
- Fixed Youtube fullscreen scroll problems
- Fixed images on Instagram not loading correctly when scrolling
- Disabled scrolling plugin on Outlook until fix is found

#### Version 1.6.9
- Made overflow fix compatible with fullscreen

#### Version 1.6.8
- Made overflow fix apply more reliably

#### Version 1.6.7
- Fixed overflow issue - again

#### Version 1.6.6
- Fixed overflow issue

#### Version 1.6.5
- Clarified some text
- Removed some debug stuff

#### Version 1.6.4
- Reworked icon and background color
- Reworked change in 1.6.3 to no cause issues with certain sites.

#### Version 1.6.3
- Forces OverflowX to be visible. Some sites hides this and this disables scrolling.

#### Version 1.6.2
- Reworked protection against banners that change behaviour.

#### Version 1.6.1
- Tab or tabs are now prompted to be refreshed if the plugin is disabled or enabled.
- Updated icons to match the color theme.

#### Version 1.6.0
- Refactored most of the code.
- CSS Scroll smoothing toggling no longer needs refresh of window.
- Minor bug fixes.

#### Version 1.5.3
- Added indicator for if the extension is enabled or not
- Changed so that the default behaviour in Windows (not custom) disables the extension.
- Added tooltip for smooth scrolling.

#### Version 1.5.2
- Reduced Chrome permissions needed
- Minor bug fix

#### Version 1.5.1
- iFrame security workaround

#### Version 1.5
- Fixed banners messing with smooth scroll disable behavior

## NOTES
iFrames from other domains will use default scroll speed due to security (same-origin-policy). There is to my knowledge nothing to be done about this without some clever rewrite that is currently above my head.

CSS smooth scroll behavior is disabled by default. To my knowledge, the true smooth scrolling seen in Windows and MacOS will only be available with real hardware acceleration. Google stated that this won't be avaible in Chrome for Linux. The future will tell.

Please report bugs with description and address to the site where you encountered it.

Send bug report here:
https://github.com/Dedas/linux-scroll-speed-fix/issues

#### Settings

Default scroll speed values:

Linux = 1.9

Windows = 1.0 (extension is disabled by default)

MacOS = 1.0 (This needs testing!)

#### Thanks to

Based on gblazex/smoothscroll.

Fork of DemonTPx/chrome-scroll-speed.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Linux Scroll Speed Fix Linux Scroll Speed Fix
ID mlboohjioameadaedfjcpemcaangkkbp
URL Chính Thức https://chromewebstore.google.com/detail/linux-scroll-speed-fix/mlboohjioameadaedfjcpemcaangkkbp
Mô tả Fix the slow scroll speed in Linux Chrome by setting it to the Windows value
Kích Thước Tệp 20.38 KB
Số Lần Cài Đặt 8,998
Phiên Bản Hiện Tại 1.7.2
Cập Nhật Lần Cuối 2021-09-07
Ngày Phát Hành 2020-06-24
Đánh Giá 4.40/5 Tổng số 80 Đánh Giá
Nhà Phát Triển https://winkit.se
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Linux Scroll Speed Fix",
    "version": "1.7.2",
    "description": "Fix the slow scroll speed in Linux Chrome by setting it to the Windows value",
    "permissions": [
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "page": "content.js"
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "ftp:\/\/*\/*"
            ],
            "exclude_globs": [
                "*.pdf"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "icon_16.png",
        "32": "icon_32.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "manifest_version": 2
}