Skip to content

Instantly share code, notes, and snippets.

@mtrl
Last active December 27, 2015 18:19
Show Gist options
  • Select an option

  • Save mtrl/7369221 to your computer and use it in GitHub Desktop.

Select an option

Save mtrl/7369221 to your computer and use it in GitHub Desktop.
A little tampermonkey/greasemonkey script to hide the daily video on HobbyKing.com
// ==UserScript==
// @name Remove HobbyKing auto play daily video
// @namespace http://mtrl.co.uk/
// @updateURL https://gist.github.com/mtrl/7369221/raw/hobbyking-userscript-hide-daily-video.js
// @version 1.0.3
// @description Removes the annoying autoplay daily video from the home page of HobbyKing.com
// @match http://hobbyking.com/hobbyking/store/index.asp
// @match http://www.hobbyking.com/hobbyking/store/index.asp
// ==/UserScript==
$(function(){
$('#daily').remove();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment