Scroll to Top

Add a stylish scroll-to-top button for all websites.

Scroll to Top란 무엇입니까?

Scroll to Top은(는) Muyor에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add a stylish scroll-to-top button for all websites."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Scroll to Top is an extension that lets you easily scroll to the top of the page by clicking on a button.

Simply add the add-on to your browser and start surfing. Once you scroll down on a page, a button will appear at the right-bottom corner with an - UP - arrow icon. Clicking on the button will scroll the page to the top, fast and smooth! If you want to hide the scroll button, please click on the toolbar icon once (dark grey arrow). The button will disappear immediately. Please note that pressing on the toolbar icon once again will display the scroll button.

To report bugs, please fill out the bug report form on the add-on's homepage (https://mybrowseraddon.com/scroll-to-top.html).                    

확장 프로그램 기본 정보

이름 Scroll to Top Scroll to Top
ID jbnhgaohndmapghohjlkgjeghcklepee
공식 URL https://chromewebstore.google.com/detail/scroll-to-top/jbnhgaohndmapghohjlkgjeghcklepee
설명 Add a stylish scroll-to-top button for all websites.
파일 크기 43.94 KB
설치 횟수 808
현재 버전 0.1.2
최근 업데이트 2024-01-21
출시 날짜 2018-04-30
평점 4.25/5 총 4 개의 평점
개발자 Muyor
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://mybrowseraddon.com/scroll-to-top.html
도움말 페이지 URL https://mybrowseraddon.com/scroll-to-top.html
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.1.2",
    "manifest_version": 3,
    "name": "Scroll to Top",
    "offline_enabled": true,
    "permissions": [
        "storage"
    ],
    "homepage_url": "https:\/\/mybrowseraddon.com\/scroll-to-top.html",
    "description": "Add a stylish scroll-to-top button for all websites.",
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "Scroll to Top",
        "default_icon": {
            "16": "data\/icons\/16.png",
            "32": "data\/icons\/32.png",
            "48": "data\/icons\/48.png",
            "64": "data\/icons\/64.png"
        }
    },
    "commands": {
        "toggle": {
            "description": "Scroll to Top",
            "suggested_key": {
                "mac": "Command+Shift+D",
                "default": "Ctrl+Shift+D"
            }
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "js": [
                "data\/content_script\/inject.js"
            ],
            "css": [
                "data\/content_script\/inject.css"
            ]
        }
    ],
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png"
    }
}