Middle Click Scroll
Clicking the middle click/wheel now takes you to the top of the page
Apa itu Middle Click Scroll?
Middle Click Scroll adalah ekstensi Chrome yang dikembangkan oleh alarv, dan fitur utamanya adalah "Clicking the middle click/wheel now takes you to the top of the page".
Unduh Berkas CRX Ekstensi Middle Click Scroll
Unduh file ekstensi Middle Click Scroll dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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!
Informasi Dasar Ekstensi
Nama | |
ID | fjpenocmelcgifceikomkkjkhdfgghjn |
URL Resmi | https://chrome.google.com/webstore/detail/middle-click-scroll/fjpenocmelcgifceikomkkjkhdfgghjn |
Deskripsi | Clicking the middle click/wheel now takes you to the top of the page |
Ukuran File | 15.16 KB |
Jumlah Instalasi | 195 |
Versi Saat Ini | 1.0 |
Terakhir Diperbarui | 2016-06-07 |
Tanggal Publikasi | 2016-06-07 |
Penilaian | 2.29/5 Total 7 Penilaian |
Pengembang | alarv |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" } ] } |