Greasy Fork is available in English.

Select2

The jQuery replacement for select boxes

À partir de 2016-11-14. Voir la dernière version.

// ==UserScript==
// @name         Select2
// @namespace    https://select2.github.io/
// @version      0.1
// @description  The jQuery replacement for select boxes
// @author       t_liang
// @include      *:*
// @grant        none
// @noframes     false
// @require      http://cdn.bootcss.com/jquery/3.1.1/jquery.min.js
// ==/UserScript==

//(function() {
	jQuery(function($) {
		$.getScript('//cdn.bootcss.com/select2/4.0.3/js/select2.min.js', function() {
			$('select', document.body).select2();
		});
		$(document.head).append('<link href="//cdn.bootcss.com/select2/4.0.3/css/select2.min.css" rel="stylesheet">');
	});
//})();