Last active
December 24, 2015 20:09
-
-
Save ssig33/6855457 to your computer and use it in GitHub Desktop.
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 crossbike navi with AdBlock | |
| // @namespace http://ssig33.com | |
| // @version 0.1 | |
| // @description test browser : chrome | |
| // @include http://crossbike-navi.com/* | |
| // @copyright ssig33 | |
| // ==/UserScript== | |
| var f = function(){ | |
| setTimeout(function(){ | |
| if(document.querySelector('#d41b')){document.querySelector('#d41b').remove();} | |
| f(); | |
| }, 200) | |
| }; | |
| f(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment