Skip to content

Instantly share code, notes, and snippets.

@mistificator
Created February 12, 2016 09:23
Show Gist options
  • Save mistificator/5df1a1ea3c25e70a17a2 to your computer and use it in GitHub Desktop.
Save mistificator/5df1a1ea3c25e70a17a2 to your computer and use it in GitHub Desktop.
Plurk interface patches and other sh..
// ==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