Here’s a thing: code


// ==UserScript==
// @name FIE
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author me
// @match http://fie.org/*
// @match http://www.usafencing.org/*
// @grant none
// @require http://code.jquery.com/jquery-latest.js
// ==/UserScript==

(function() {
'use strict';
var j = jQuery.noConflict();
j('.bg-black').fadeOut(5000);
j('h2:contains("Fencing")').css('color', 'yellow');
j('a').append(' \nFencing is dumb tho, so who knows.');
j('p').text('meh');
j('#panelTwo').prepend('Oh? ');
})();

Comments are closed.