Scroll to Top

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

Scroll to Top là gì?

Scroll to Top là một tiện ích mở rộng Chrome được phát triển bởi Muyor, và tính năng chính của nó là "Add a stylish scroll-to-top button for all websites.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Scroll to Top

Tải xuống các tệp mở rộng Scroll to Top dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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).                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Scroll to Top Scroll to Top
ID jbnhgaohndmapghohjlkgjeghcklepee
URL Chính Thức https://chromewebstore.google.com/detail/scroll-to-top/jbnhgaohndmapghohjlkgjeghcklepee
Mô tả Add a stylish scroll-to-top button for all websites.
Kích Thước Tệp 43.94 KB
Số Lần Cài Đặt 808
Phiên Bản Hiện Tại 0.1.2
Cập Nhật Lần Cuối 2024-01-21
Ngày Phát Hành 2018-04-30
Đánh Giá 4.25/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Muyor
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://mybrowseraddon.com/scroll-to-top.html
URL Trang Trợ Giúp https://mybrowseraddon.com/scroll-to-top.html
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}