Skip to content

Instantly share code, notes, and snippets.

@Fenntasy
Last active July 29, 2016 13:12
Show Gist options
  • Save Fenntasy/3c9d3e1019c48e69dd8afa51dd329da8 to your computer and use it in GitHub Desktop.
Save Fenntasy/3c9d3e1019c48e69dd8afa51dd329da8 to your computer and use it in GitHub Desktop.
// ==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