NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Kaskus-grey-link-remover // @namespace http://zackad.tk // @homepageURL http://www.kaskus.co.id/show_post/54d46928128b4659278b4576 // @description buat yg gk suka link abu2 di kaskus, remove aja. // @author zackad // @version 0.1.1 // @include http://m.kaskus.co.id/post/* // @include http://m.kaskus.co.id/thread/* // @include http://m.kaskus.co.id/lastpost/* // @include /^https?://www.kaskus.co.id/thread/*/ // @include /^https?://www.kaskus.co.id/lastpost/*/ // @include /^https?://www.kaskus.co.id/post/*/ // @include /^https?://www.kaskus.co.id/group/discussion/*/ // @include /^https?://www.kaskus.co.id/show_post/*/ // @license MIT License // @grant GM_addStyle // @require http://code.jquery.com/jquery-1.10.1.min.js // @run-at document-end // ==/UserScript== $(document).ready(function() { $('span[style*="font-size:10px;color: #888;"]').hide(); });