// ==UserScript==
// @name https://edr-info.com/ru/customer-search
// @namespace https://edr-info.com/ru/customer-search
// @include https://edr-info.com/ru/customer-search*
// @version 1
// @grant none
// ==/UserScript==
window.addEventListener('DOMContentLoaded', function() {
'use strict';
const f = () => {
document.querySelectorAll('i.far.fa-eye.text-info.pointer').forEach(i => i.click());
window.setTimeout(f, 1000)
};
f();
}); |