Scroll to Top

Quickly scroll to top or bottom of the page and then return to the previous position.

Scroll to Top란 무엇입니까?

Scroll to Top은(는) https://www.facebook.com/browservery에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Quickly scroll to top or bottom of the page and then return to the previous position."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Scroll to Top adds button to the left of your browser window that lets you:

★ Scroll to top by left-clicking on it.

★ Scroll to bottom by right-clicking on it.

★ Return to the previous position/remember your current position by middle clicking on it.

There're also customizable keyboard shortcuts for all these actions. To customize them go to chrome://extensions/shortcuts.
----------------------------------------------------------------
Permissions:
Read and change all your data on the websites you visit
Allows the extension to append the scroll button and do scrolling on pages (when the button is clicked).
----------------------------------------------------------------
🖼️ Follow my Facebook page (more extensions): https://www.facebook.com/browservery                    

확장 프로그램 기본 정보

이름 Scroll to Top Scroll to Top
ID obebfhocibioiakindbigklnhhknkcdc
공식 URL https://chromewebstore.google.com/detail/scroll-to-top/obebfhocibioiakindbigklnhhknkcdc
설명 Quickly scroll to top or bottom of the page and then return to the previous position.
파일 크기 59.54 KB
설치 횟수 831
현재 버전 1.18.1
최근 업데이트 2024-01-19
출시 날짜 2020-05-28
평점 4.37/5 총 30 개의 평점
개발자 https://www.facebook.com/browservery
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.facebook.com/browservery
도움말 페이지 URL https://groups.google.com/g/browservery
개인정보 보호 정책 페이지 URL https://github.com/loftyshaky/extensions-privacy-policy/blob/main/extensions-privacy-policy.md
지원되는 언어 en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Scroll to Top",
    "description": "__MSG_app_description__",
    "version": "1.18.1",
    "default_locale": "en",
    "web_accessible_resources": [
        {
            "resources": [
                "sound.mp3"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_title": "Scroll to Top"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "smooth-scroll.min.js",
                "hf.js",
                "content_script.js"
            ],
            "css": [
                "content_script.css"
            ]
        }
    ],
    "commands": {
        "to_top": {
            "suggested_key": {
                "default": "Alt+O"
            },
            "description": "__MSG_to_top_hotkey__"
        },
        "to_bottom": {
            "suggested_key": {
                "default": "Alt+P"
            },
            "description": "__MSG_to_bottom_hotkey__"
        },
        "return": {
            "suggested_key": {
                "default": "Alt+U"
            },
            "description": "__MSG_return_hotkey__"
        },
        "remember_position": {
            "suggested_key": {
                "default": "Alt+I"
            },
            "description": "__MSG_remember_position_hotkey__"
        }
    }
}