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 |
官方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" } ] } |