Here are the simple steps to get rid of the “Support Ukraine” link at AI Sensei and OGS
Install the JS Inject chrome plugin – https://chrome.google.com/webstore/detail/js-inject/pbicaeiggebhcjkenahlamdjgjhbbekc
Choose global
Add the following Javascript:
try {
document.querySelectorAll('a[href="https://www.care.org/our-work/where-we-work/ukraine/"]')[0].remove();
} catch (error) {
}
try {
document.getElementsByClassName("ogs-nav-logo")[0].remove();
} catch (error) {
}
Done!