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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        '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
공식 URL 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": [
                ""
            ]
        }
    ]
}