Middle Click Scroll

Clicking the middle click/wheel now takes you to the top of the page

Middle Click Scrollคืออะไร?

Middle Click Scroll เป็นส่วนขยายของ Chrome ที่พัฒนาโดย alarv และคุณลักษณะหลักของมันคือ "Clicking the middle click/wheel now takes you to the top of the page"

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

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

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

                        Give life to your mouse wheel click! By clicking the mouse wheel or the middle mouse click, you can now scroll to the top of the page or to the bottom! If you want to cancel your action, don't worry! 1 second after you keep the mouse wheel clicked, the event is cancelled, to avoid unwanted scrolls. Enjoy scrolling!                    

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

ชื่อ Middle Click Scroll Middle Click Scroll
ID fjpenocmelcgifceikomkkjkhdfgghjn
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/middle-click-scroll/fjpenocmelcgifceikomkkjkhdfgghjn
คำอธิบาย Clicking the middle click/wheel now takes you to the top of the page
ขนาดไฟล์ 15.16 KB
จำนวนการติดตั้ง 195
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2016-06-07
วันที่เผยแพร่ 2016-06-07
คะแนน 2.29/5 รวมทั้งหมด 7 คะแนน
ผู้พัฒนา alarv
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Middle Click Scroll",
    "version": "1.0",
    "description": "Clicking the middle click\/wheel now takes you to the top of the page",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "author": "Alex",
    "permissions": [
        "activeTab"
    ],
    "browser_action": {
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}