internazionale.user.js - dotfiles - leot's dotfiles
(HTM) hg clone https://bitbucket.org/iamleot/dotfiles
(DIR) Log
(DIR) Files
(DIR) Refs
---
internazionale.user.js
---
1 // ==UserScript==
2 // @name internazionale
3 // @description Remove ads from Internazionale
4 // @include http*://www.internazionale.it/*
5 // ==/UserScript==
6
7 [".ads_content_top", ".content_adv", ".hentry--banner", ".wrapAd"].forEach(function(c) {
8 document.querySelectorAll(c).forEach(function(e) {
9 e.remove();
10 });
11 });