SCriptin sahibi şunları yazmıştı ama olmamıştı

Enter problemi için:

var input = document.getElementById("link");
input.addEventListener("keyup", function(event) {

if (event.keyCode === 13) {
event.preventDefault();
GetLink();
}
});

Link düzeltmesi için:

$(document).ready(function () {
$("#link").change(function() {
if (!/^http:///.test(this.value)) {
this.value = "https://" + this.value;
}
});
});