Easy Scroll

This brings you a comfortable reading experience with smooth scroll of necessary amount of webpage by pressing an assigned key.

Easy Scroll là gì?

Easy Scroll là một tiện ích mở rộng Chrome được phát triển bởi https://gumoisland.com, và tính năng chính của nó là "This brings you a comfortable reading experience with smooth scroll of necessary amount of webpage by pressing an assigned key.".

Ả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 Easy Scroll

Tải xuống các tệp mở rộng Easy Scroll 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

                        'Easy Scroll' brings you a comfortable articles reading experience with smooth scroll of necessary amount of webpage by pressing an assigned key. Wherever you read an article, just hit the key to scroll. Then it will scroll down properly eliminating any interruption of your reading pace and article's context.

Motivation : Basically, every time I read an article on website, there were some methods to scroll down. Spacebar or PageDown key scrolled too much amount at one use. And on the other hand, DownArrow key or Mouse Wheel took me  too many pressing or wheeling. Both of these methods made me frustrated.

Function : By pressing the RightArrow key, you can scroll down a half of your web screen smoothly. The assigned key, amount of scrolling, and scrolling velocity can be adjusted at preference menu.                    

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

Tên Easy Scroll Easy Scroll
ID lilheebcgalohleheomgkolgmbbpgldp
URL Chính Thức https://chromewebstore.google.com/detail/easy-scroll/lilheebcgalohleheomgkolgmbbpgldp
Mô tả This brings you a comfortable reading experience with smooth scroll of necessary amount of webpage by pressing an assigned key.
Kích Thước Tệp 74.22 KB
Số Lần Cài Đặt 2,194
Phiên Bản Hiện Tại 1.20
Cập Nhật Lần Cuối 2023-12-28
Ngày Phát Hành 2018-10-31
Đánh Giá 3.89/5 Tổng số 28 Đánh Giá
Nhà Phát Triển https://gumoisland.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://gumoisland.com
URL Trang Trợ Giúp https://gumoisland.com
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Easy Scroll",
    "version": "1.20",
    "manifest_version": 3,
    "description": "This brings you a comfortable reading experience with smooth scroll of necessary amount of webpage by pressing an assigned key.",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "src\/jquery.min.js",
                "src\/content.js"
            ]
        }
    ],
    "action": {
        "default_icon": {
            "16": "images\/icon_16.png",
            "19": "images\/icon_19.png",
            "32": "images\/icon_32.png",
            "38": "images\/icon_38.png",
            "48": "images\/icon_48.png",
            "128": "images\/icon_128.png"
        },
        "default_title": "Easy Scroll"
    },
    "background": {
        "service_worker": "src\/background.js"
    },
    "options_page": "src\/options.html",
    "permissions": [
        "tabs",
        "activeTab",
        "storage"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "src\/*"
            ],
            "matches": [
                ""
            ]
        }
    ]
}