Top and Bottom scroll buttons

Adds scroll to Top and Bottom buttons on all sites

Top and Bottom scroll buttons là gì?

Top and Bottom scroll buttons là một tiện ích mở rộng Chrome được phát triển bởi OmDev, và tính năng chính của nó là "Adds scroll to Top and Bottom buttons on all sites".

Ả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 Top and Bottom scroll buttons

Tải xuống các tệp mở rộng Top and Bottom scroll buttons 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

                        Navigate long pages more easily.

This extension adds two beautiful buttons at the corner of each page for fast scrolling to the top or the bottom of the page.

The buttons are customisable. You can change its size, transparency, position and the way they are scrolling.
You can also set the buttons to auto hide so you'll see them only when you want.

This extension is free, created for the people of the internet.

Limitations: As any other addon it doesn't work on Chrome web store, browser specific pages like "about:addons", on other extensions pages like options page of some addon. It's a browser security limitation, made for your own safety ;)                    

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

Tên Top and Bottom scroll buttons Top and Bottom scroll buttons
ID dbofniohnfjigodceiebfkcfdhncnici
URL Chính Thức https://chromewebstore.google.com/detail/top-and-bottom-scroll-but/dbofniohnfjigodceiebfkcfdhncnici
Mô tả Adds scroll to Top and Bottom buttons on all sites
Kích Thước Tệp 53.82 KB
Số Lần Cài Đặt 3,653
Phiên Bản Hiện Tại 2.0.0
Cập Nhật Lần Cuối 2023-12-27
Ngày Phát Hành 2018-12-11
Đánh Giá 4.50/5 Tổng số 38 Đánh Giá
Nhà Phát Triển OmDev
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Top and Bottom scroll buttons",
    "short_name": "Scroll buttons",
    "description": "Adds scroll to Top and Bottom buttons on all sites",
    "version": "2.0.0",
    "icons": {
        "48": "img\/icon-48.png",
        "96": "img\/icon-96.png",
        "128": "img\/icon-128.png"
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        ""
    ],
    "action": {
        "default_popup": "content\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "options\/options-storage.js",
                "content\/buttons.js"
            ],
            "css": [
                "content\/buttons.css"
            ],
            "all_frames": false
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "img\/arrow-up.svg",
                "img\/arrow-dn.svg"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": true
    }
}