jeantonickgmail.com / highlightPOA

// ==UserScript==
// @name        highlightPOA
// @namespace   baoz
// @include     https://controlpanel.betssonbusiness.com/*
// @include     https://legacy-controlpanel.betssonbusiness.com/*/Customer/Overview/*
// @include     /https:\/\/papaasnoak\.ble\.local:5104\/.*\/User\/UsersPaymentOptionGroups.aspx\?userId=.*&siteName=.*/
// @version     1
// @grant       none
// @updateURL   https://openuserjs.org/meta/jeantonickgmail.com/highlightPOA.meta.js
// ==/UserScript==



window.onload = calistir();


function calistir(){

var notes = document.getElementById("NotesUserPreview");
var address = document.getElementsByName("address");
var n = notes.innerHTML.search(/POA conf|address conf|adress match|POA match|confirmed poa/i);

if(n>1)
{

address[0].style.backgroundColor = "lime";


}


}