Scroll to Top

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

Scroll to Topคืออะไร?

Scroll to Top เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Muyor และคุณลักษณะหลักของมันคือ "Add a stylish scroll-to-top button for all websites."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Scroll to Top

ดาวน์โหลดไฟล์ส่วนขยาย Scroll to Top ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    }
}