Deletes the ad banner on C.AI
// ==UserScript==
// @name C.AI Adblock
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Deletes the ad banner on C.AI
// @author cat
// @match *://*/*
// @grant none
// @run-at document-start
// @license MIT
// ==/UserScript==
(function() {
'use strict';
function getElementByXPath(xpath) {
return document.evaluate(
xpath,
document,
null,
XPathResult.FIRST_ORDERED_NODE_TYPE,
null
).singleNodeValue;
}
function removeTargetElement() {
const targetXPath = '//*[@id="main-content"]/div/div[1]/div/div[2]';
const element = getElementByXPath(targetXPath);
if (element) {
element.remove();
}
}
setInterval(removeTargetElement, 500);
})();