I've been offered this before. But it doesn't work :
document.addEventListener('DOMContentLoaded', function () {
const span = Array.from(document.querySelectorAll('span'))
.find(el => el.textContent.trim() === 'Powered by ');
if (span) {
span.textContent = 'New text';
}
});
$(document).ready(function() {
const span = $('span').filter(function() {
return $(this).text().trim() === 'Powered by ';
});
if (span.length) {
span.text('New text');
}
});
=> More informations about this toot | View the thread | More toots from Elsental@shelter.moe
text/gemini
This content has been proxied by September (ba2dc).