Back to the Top

Scroll to the top of the page

Back to the Top란 무엇입니까?

Back to the Top은(는) marinadecroon에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Scroll to the top of the page"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        A browser extension (add-on) for Google Chrome that allows you to quickly get back to the top and/or bottom of a page.                    

확장 프로그램 기본 정보

이름 Back to the Top Back to the Top
ID gekpnhhoikfeampkegfmkfbeioefecio
공식 URL https://chromewebstore.google.com/detail/back-to-the-top/gekpnhhoikfeampkegfmkfbeioefecio
설명 Scroll to the top of the page
파일 크기 14.1 KB
설치 횟수 160
현재 버전 1.0
최근 업데이트 2022-04-18
출시 날짜 2022-04-18
평점 1.00/5 총 1 개의 평점
개발자 marinadecroon
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://sites.google.com/view/toptoscroll/home
지원되는 언어 en
manifest.json
{
    "background": {
        "service_worker": "sw.js"
    },
    "description": "Scroll to the top of the page",
    "name": "Back to the Top",
    "short_name": "up",
    "version": "1.0",
    "manifest_version": 3,
    "homepage_url": "https:\/\/avroraext.com",
    "action": {
        "default_icon": "icons\/icon_128.png"
    },
    "icons": {
        "128": "icons\/icon_128.png",
        "64": "icons\/icon_64.png",
        "32": "icons\/icon_32.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "icons\/icon_32.png"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx"
}