CPTDB Hide Ads

Hide ads on cptdb.ca

// ==UserScript==
// @name        CPTDB Hide Ads
// @namespace   Violentmonkey Scripts
// @match       *://cptdb.ca/*
// @grant       GM_addStyle
// @version     1.0
// @author      CyrilSLi
// @description Hide ads on cptdb.ca
// @license     MIT
// ==/UserScript==

GM_addStyle(`
    body {
        padding: 0 !important;
    }
    div.focus-mega-footer, ins.adsbygoogle {
        display: none !important;
    }
`);