Scroll To Top

Scroll to top and vice versa in a window.

Scroll To Top란 무엇입니까?

Scroll To Top은(는) Pratik Soni에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Scroll to top and vice versa in a window."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Scroll To Top 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Everyday scrolling on long pages can be a tiring experience specially on those sites which provides infinite scrolling (like facebook, twitter, etc). You will keep scrolling using your mouse to see more and more updates and then when you want to go up to the top of the page, you might move your hand from your mouse to keyboard to search for Home key or you will drag the scroll bar to the top.

Scroll To Top tries to minimize this effort by providing an intuitive icon at the bottom-right corner of each page so that with one click you will be at the top of the page with beautiful animation. No more searching for Home key on your keyboard and no more dragging of the scroll bar. It will be just fun and ergonomic to use it.

GitHub Rep: https://github.com/pratikabu/scrolltotop
Release notes: https://github.com/pratikabu/scrolltotop/releases                    

확장 프로그램 기본 정보

이름 Scroll To Top Scroll To Top
ID hegiignepmecppikdlbohnnbfjdoaghj
공식 URL https://chromewebstore.google.com/detail/scroll-to-top/hegiignepmecppikdlbohnnbfjdoaghj
설명 Scroll to top and vice versa in a window.
파일 크기 304 KB
설치 횟수 27,990
현재 버전 5.0
최근 업데이트 2023-08-25
출시 날짜 2020-06-06
평점 4.67/5 총 492 개의 평점
개발자 Pratik Soni
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/pratikabu/scrolltotop
도움말 페이지 URL https://github.com/pratikabu/scrolltotop/discussions
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Scroll To Top",
    "version": "5.0",
    "description": "Scroll to top and vice versa in a window.",
    "icons": {
        "16": "icons\/pratikabu-stt-16.png",
        "48": "icons\/pratikabu-stt-48-1.png",
        "128": "icons\/pratikabu-stt-128.png"
    },
    "author": "Pratik Soni",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "css": [
                "pratikabu-stt.css"
            ],
            "matches": [
                ""
            ],
            "js": [
                "thirdparty\/pratikabu-jquery-3.2.1.min.js",
                "browserspecific\/pratikabu-stt-impl.js",
                "pratikabu-stt.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "activeTab",
        "contextMenus"
    ],
    "homepage_url": "https:\/\/github.com\/pratikabu\/scrolltotop",
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": true
    },
    "web_accessible_resources": [
        {
            "resources": [
                "icons\/*.png"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "action": []
}