DOESN'T WORK Meshcentral Prevent Filter Autocomplete

Used to prevent autofilling the filter field in Meshcentral

Pada tanggal 14 Juli 2023. Lihat %(latest_version_link).

// ==UserScript==
// @name     DOESN'T WORK Meshcentral Prevent Filter Autocomplete
// @description Used to prevent autofilling the filter field in Meshcentral
// @match    https://meshcentral.com/*
// @grant    none
// @run-at   document-idle
// @license MIT
// @version 0.0.1.20230714135804
// @namespace https://greasyfork.org/users/866858
// ==/UserScript==

function modifyAutocomplete() {
    let searchInput = document.getElementById('SearchInput');
    if (searchInput) {
        searchInput.setAttribute('autocomplete', 'new-password');
    }
}

window.addEventListener('load', modifyAutocomplete);