Scroll To Top

Scroll to top and vice versa in a window.

Scroll To Topคืออะไร?

Scroll To Top เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Pratik Soni และคุณลักษณะหลักของมันคือ "Scroll to top and vice versa in a window."

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Everyday scrolling on long pages can be a tiring experience specially on those sites which provides infinite scrolling (like facebook, twitter, etc). You will keep scrolling using your mouse to see more and more updates and then when you want to go up to the top of the page, you might move your hand from your mouse to keyboard to search for Home key or you will drag the scroll bar to the top.

Scroll To Top tries to minimize this effort by providing an intuitive icon at the bottom-right corner of each page so that with one click you will be at the top of the page with beautiful animation. No more searching for Home key on your keyboard and no more dragging of the scroll bar. It will be just fun and ergonomic to use it.

GitHub Rep: https://github.com/pratikabu/scrolltotop
Release notes: https://github.com/pratikabu/scrolltotop/releases                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Scroll To Top Scroll To Top
ID hegiignepmecppikdlbohnnbfjdoaghj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/scroll-to-top/hegiignepmecppikdlbohnnbfjdoaghj
คำอธิบาย Scroll to top and vice versa in a window.
ขนาดไฟล์ 304 KB
จำนวนการติดตั้ง 27,990
เวอร์ชันปัจจุบัน 5.0
อัปเดตครั้งล่าสุด 2023-08-25
วันที่เผยแพร่ 2020-06-06
คะแนน 4.67/5 รวมทั้งหมด 492 คะแนน
ผู้พัฒนา Pratik Soni
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/pratikabu/scrolltotop
URL หน้าช่วยเหลือ https://github.com/pratikabu/scrolltotop/discussions
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Scroll To Top",
    "version": "5.0",
    "description": "Scroll to top and vice versa in a window.",
    "icons": {
        "16": "icons\/pratikabu-stt-16.png",
        "48": "icons\/pratikabu-stt-48-1.png",
        "128": "icons\/pratikabu-stt-128.png"
    },
    "author": "Pratik Soni",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "css": [
                "pratikabu-stt.css"
            ],
            "matches": [
                ""
            ],
            "js": [
                "thirdparty\/pratikabu-jquery-3.2.1.min.js",
                "browserspecific\/pratikabu-stt-impl.js",
                "pratikabu-stt.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "activeTab",
        "contextMenus"
    ],
    "homepage_url": "https:\/\/github.com\/pratikabu\/scrolltotop",
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": true
    },
    "web_accessible_resources": [
        {
            "resources": [
                "icons\/*.png"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "action": []
}