11 lines
393 B
YAML
11 lines
393 B
YAML
- domain: www.usatoday.com
|
|
injections:
|
|
- position: head
|
|
append: |
|
|
<script>
|
|
document.addEventListener("DOMContentLoaded", () => {
|
|
const banners = document.querySelectorAll('div.roadblock-container, .gnt_nb, [aria-label="advertisement"], div[id="main-frame-error"]');
|
|
banners.forEach(el => { el.remove(); });
|
|
});
|
|
</script>
|