Created
August 20, 2018 22:39
-
-
Save ItsDanielHarris/8dd28d0c4b69167ae35b99b4189158d4 to your computer and use it in GitHub Desktop.
Twitch.tv Ad Blocker
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Twitch.tv Ad Blocker | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Block Twitch.tv Ads | |
// @author @thewebauthor | |
// @match https://www.twitch.tv/* | |
// @grant none | |
// @require http://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
$(".js-player-ad-overlay.player-ad-overlay").css("display", "none !important"); | |
// Your code here... | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment