Created
February 12, 2016 09:23
-
-
Save mistificator/5df1a1ea3c25e70a17a2 to your computer and use it in GitHub Desktop.
Plurk interface patches and other sh..
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 Unplurk | |
// @namespace http://www.plurk.com/ | |
// @version 0.1 | |
// @description Plurk interface patches and other sh.. | |
// @author Mist Poryvaev | |
// @grant none | |
// @include http://www.plurk.com/* | |
// @include https://www.plurk.com/* | |
// ==/UserScript== | |
jQuery(document).ready(function() { | |
jQuery(document).bind('DOMNodeInserted', function(e) | |
{ | |
if (e.target.id == "updater") | |
{ | |
var noti_re_actions = e.target.childNodes[1].childNodes[1]; | |
noti_re_actions.appendChild(noti_re_actions.childNodes[0]); | |
} | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment