Easy Scroll

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

什麼是Easy Scroll?

Easy Scroll是由https://gumoisland.com開發的Chrome擴展程式,該擴展的主要功能是“This brings you a comfortable reading experience with smooth scroll of necessary amount of webpage by pressing an assigned key.”。

擴展截圖

screenshot

下載Easy Scroll擴展crx文件

下載Easy Scroll擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        '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.                    

擴展基本資訊

名稱 Easy Scroll Easy Scroll
ID lilheebcgalohleheomgkolgmbbpgldp
官方網址 https://chromewebstore.google.com/detail/easy-scroll/lilheebcgalohleheomgkolgmbbpgldp
簡介 This brings you a comfortable reading experience with smooth scroll of necessary amount of webpage by pressing an assigned key.
檔案大小 74.22 KB
安裝次數 2,194
目前版本 1.20
更新時間 2023-12-28
上架時間 2018-10-31
評分 3.89/5 共 28 次評分
開發者 https://gumoisland.com
電子郵箱 [email protected]
付費類型 free
擴展官網 https://gumoisland.com
說明頁面URL https://gumoisland.com
支援的語言 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": [
                ""
            ]
        }
    ]
}