Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save happiness801/19a9e5af0188690e7f09da21a50a07c0 to your computer and use it in GitHub Desktop.
Save happiness801/19a9e5af0188690e7f09da21a50a07c0 to your computer and use it in GitHub Desktop.
America First Credit Union Improvements
// ==UserScript==
// @name America First Credit Union Improvements
// @namespace http://onai.net/
// @version 0.1
// @description Cleanup for AFCU web app
// @author Kevin Gwynn
// @match https://*.americafirst.com/*
// @grant none
// ==/UserScript==
(function() {
// Make sure jQuery is available
var gen = 0;var act=function(){gen=1;var script=document.createElement('script');script.src='//code.jquery.com/jquery-1.11.0.min.js';script.type='text/javascript';document.getElementsByTagName('head')[0].appendChild(script);};(!window.jQuery)?act():1;setTimeout(function(){console.log('jQuery '+(gen?'loaded: ':'existing: ')+(window.jQuery?jQuery().jquery:'no jQuery/load failed'));}, 500);
var addMoneyManagerLink = function() {
console.log('KAG: AFCU Cleanups...');
jQuery('UL.navbar-nav').append('<li><a href="/banking/SingleSignIn/Home/Embedded/MoneyDesktop">Money Manager</a></li>');
}
setTimeout(addMoneyManagerLink, 500);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment