-
-
Save 0mg/480965 to your computer and use it in GitHub Desktop.
Google Suggest Fix for Opera
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Google Suggest Fix for Opera | |
// @include http://www.google.com/* | |
// @include http://www.google.co.jp/* | |
// ==/UserScript== | |
addEventListener("keypress", function(v) { | |
if (v.target.name === "q" && (v.keyCode === 38 || v.keyCode === 40) && | |
!v.shiftKey) v.preventDefault(); | |
}, true); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment