Skip to content

Instantly share code, notes, and snippets.

@ItsDanielHarris
Created August 20, 2018 22:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ItsDanielHarris/8dd28d0c4b69167ae35b99b4189158d4 to your computer and use it in GitHub Desktop.
Save ItsDanielHarris/8dd28d0c4b69167ae35b99b4189158d4 to your computer and use it in GitHub Desktop.
Twitch.tv Ad Blocker
// ==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