Middle Click Scroll
Clicking the middle click/wheel now takes you to the top of the page
什麼是Middle Click Scroll?
Middle Click Scroll是由alarv開發的Chrome擴展程式,該擴展的主要功能是“Clicking the middle click/wheel now takes you to the top of the page”。
下載Middle Click Scroll擴展crx文件
下載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!
擴展基本資訊
名稱 | |
ID | fjpenocmelcgifceikomkkjkhdfgghjn |
官方網址 | 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" } ] } |