**// ==UserScript==
// @name Remove readonly
// @author msteffens1979@gmail.com
// @match https://localviking.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
//run code in 1 second interval
setInterval(()=>{
//get all select and input elements
document.querySelectorAll('select,input').forEach( elm =>{
//remove readonly if exist
if(elm.hasAttribute('readonly')) elm.removeAttribute('readonly');
});
},1000);
})();
hi
this