My Scroll Button

Simply scrolling to top or bottom

My Scroll Button là gì?

My Scroll Button là một tiện ích mở rộng Chrome được phát triển bởi N.Zetoutou, và tính năng chính của nó là "Simply scrolling to top or bottom".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng My Scroll Button 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

                        A simple scroll button.
Perfect for tumblr or twitter which use endless loading.
you can disable for specific site and your seetings is always synced with Chrome sync (you must check "extensions" in google chrome sync)
This extension has very light code (~ 6k without scroll image).
Enjoys !
************************ my other extensions ***************
https://chrome.google.com/webstore/detail/font-playground/hdpmpnhaoddjelneingmbnhaibbmjgno

https://chrome.google.com/webstore/detail/fast-bookmark-scanner/gjcmklpilmpfhfjpebhnapnglcppdbic

https://chrome.google.com/webstore/detail/click-counter-beta/pjjhodhefdnglbaaogjilbficnccehlf                    

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

Tên My Scroll Button My Scroll Button
ID pbpnciineegkfenpaaebjmbmmbhocipf
URL Chính Thức https://chromewebstore.google.com/detail/my-scroll-button/pbpnciineegkfenpaaebjmbmmbhocipf
Mô tả Simply scrolling to top or bottom
Kích Thước Tệp 14.9 KB
Số Lần Cài Đặt 285
Phiên Bản Hiện Tại 2017.11.15
Cập Nhật Lần Cuối 2017-11-15
Ngày Phát Hành 2017-11-15
Đánh Giá 4.14/5 Tổng số 14 Đánh Giá
Nhà Phát Triển N.Zetoutou
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",
    "name": "My Scroll Button",
    "version": "2017.11.15",
    "description": "Simply scrolling to top or bottom",
    "icons": {
        "16": "icon-ext-48.png",
        "48": "icon-ext-48.png",
        "128": "icon-ext-48.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "css": [
                "content_script.css"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon-ext-48.png",
        "default_popup": "browser_action.html"
    },
    "web_accessible_resources": [
        "icon-up.png"
    ],
    "permissions": [
        "storage",
        "activeTab"
    ],
    "manifest_version": 2
}