Created
December 16, 2014 11:42
-
-
Save botmtl/47253bec14a6e4f9d984 to your computer and use it in GitHub Desktop.
This file contains 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 thumbzillaShortMovieRemover | |
// @namespace https://gist.github.com/botmtl | |
// @author botmtl | |
// @description remove movies under 10 minutes long | |
// @include http://thumbzilla.com/* | |
// @include http://www.thumbzilla.com/* | |
// icon http://i.imgur.com/dwqh8wl.png | |
// @license http://www.gnu.org/licenses/gpl-2.0.txt | |
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js | |
// @version 1 | |
// @grant GM_addStyle | |
// @grant GM_log | |
// @grant unsafeWindow | |
// @run-at document-end | |
// ==/UserScript== | |
$('span.duration').filter(function (index) { | |
return (this.innerHTML.length < 5); | |
}).closest('li').remove(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment