Last active
July 9, 2017 15:33
-
-
Save mescoda/fda567a1ba241fe0d1ad 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 smzdm-helper | |
// @namespace smzdm-helper | |
// @version 0.2 | |
// @author mescoda on http://mescoda.com/ | |
// @include http://*.smzdm.com/* | |
// @grant unsafeWindow | |
// ==/UserScript== | |
var hide = function () { | |
document.getElementById('yc_leftLayer').remove(); | |
}; | |
document.addEventListener('DOMContentLoaded', hide, false); | |
window.addEventListener('load', hide, false); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment