Skip to content

Instantly share code, notes, and snippets.

@LennyPenny
Created January 14, 2015 22:08
Show Gist options
  • Save LennyPenny/8b774a14708cdeedc002 to your computer and use it in GitHub Desktop.
Save LennyPenny/8b774a14708cdeedc002 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name acecooled
// @namespace http://gayyyyy.com
// @version 0.1
// @description enter something useful
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
// @match http://*facepunch.com/showthread.php?t=*
// @copyright 2012+, You
// ==/UserScript==
$('.postcontainer').each(function(){
var username = $.trim($(this).find(".username_container").text());
if ( username == "Acecool" ) {
$(this).find(".postcontent").append("<br><br><i>Post by Josh ‘Acecool’ Moser. Copyright © Josh ‘Acecool’ Moser, 2012 - 2014.<br>Redistribution is allowed under the terms of the Acecool Public License (APL).<br><br><span style=\"color: #555; font-size: 10px;\">The materials in this post are provided “as is” and without warranties of any kind, either express or implied. Josh ‘Acecool’ Moser disclaims all warranties, express or implied, including but not limited to, implied warranties of merchantability and fitness for any particular purpose. Josh ‘Acecool’ Moser does not warrant that the functions contained in the materials will be uninterrupted or error-free, that defects will be corrected, or that this post or the server that makes it available are free of viruses or other harmful components. Josh ‘Acecool’ Moser does not warrant or make any representations regarding the use or the results of the use of the materials or products in this post in terms of their correctness, accuracy, reliability or otherwise. You (and not Josh ‘Acecool’ Moser) assume the entire cost of all necessary servicing, repair or correction. Applicable law may not allow the exclusion of implied warranties, so the above exclusion may not apply to you.</span></i>");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment