Kill Typeahead Search

Removes drop down lists that try to second guess the user.

目前为 2014-04-13 提交的版本,查看 最新版本

// ==UserScript==
// @name        Kill Typeahead Search
// @namespace   http://localhost:631
// @description Removes drop down lists that try to second guess the user.
// @include     *
// @version     1
// @grant       none
// ==/UserScript==

window.addEventListener('load', function () {
	var $ = unsafeWindow.jQuery;
	$('input[type=text]').unbind().attr('autocomplete', 'on');
});