NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name txtWhoAutocomplete
// @namespace http://tampermonkey.net/
// @license MIT
// @version 0.1
// @description Autocomplete for txtWho
// @author Aleh_Katsiuba
// @match https://1.tutmed.by/cgi-bin/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
const txtWho = document.getElementById('txtWho');
if (txtWho) {
txtWho.value = 'УЗ "Могилевска поликлиника №8"';
}
})();