Funnyjunk Remove Profile Styles

REMOVES THE FUCKING PROFILE STYLES

目前為 2014-12-27 提交的版本,檢視 最新版本

// ==UserScript==
// @name        Funnyjunk Remove Profile Styles
// @namespace   Posttwo
// @description REMOVES THE FUCKING PROFILE STYLES
// @include     *funnyjunk.com/user/*
// @version     3
// @require        http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js
// ==/UserScript==
$(document).ready(function ()
{
        $("<input>",
		{
			value: "Remove CSS",
			type: "button",
     	    id: "removeCSS",
		}).appendTo("#profile > .title > .contentTitle");
    $('#removeCSS').click(function() {
        $('style:eq( 3 )');
                 });
});