Last active
December 27, 2015 18:19
-
-
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
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 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