try to take over the world!
// ==UserScript==
// @name TextNow AD remover
// @namespace https://www.dosk.win/
// @version 0.1
// @description try to take over the world!
// @author SpringHack
// @match https://www.textnow.com/messaging
// @grant none
// ==/UserScript==
(function() {
'use strict';
setTimeout(() => {
document.getElementById('contentContainer').nextElementSibling.style.display = 'none';
document.getElementById('rectSlotAd').style.display = 'none'
}, 1000);
// Your code here...
})();