יש לי עוד סקריפט קטן, שגורם שאפשר לשנות שם לקבצים ותיקיות וכדו', ע"י הקשה על אנטר בסיום ההקלדה, ללא צורך ללחוץ על OK עם העכבר...:
// ==UserScript==
// @name שינוי שם בלחיצה על אנטר
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author WWW
// @match https://*.call2all.co.il/ym/index.php*
// @grant none
// ==/UserScript==
(function() {
'use strict';
$.extend($.ui.dialog.prototype.options, {
create: function() {
var $this = $(this);
// focus first button and bind enter to it
$this.parent().find('.ui-dialog-buttonpane button:first').focus();
$this.keypress(function(e) {
if( e.keyCode == $.ui.keyCode.ENTER ) {
$this.parent().find('.ui-dialog-buttonpane button:first').click();
return false;
}
});
}
});
})();
מקור לקוד.