Last active
July 29, 2016 13:12
-
-
Save Fenntasy/3c9d3e1019c48e69dd8afa51dd329da8 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 Monabanq tabindex safety | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @match https://www.monabanq.com/* | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
Array.prototype.slice.call(document.bloc_ident, 1).forEach(function(elm) { | |
elm.parentNode.removeChild(elm); | |
}) | |
// Your code here... | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment