Skip to content

Instantly share code, notes, and snippets.

View oxchronxo's full-sized avatar

Eric Fehrenbacher oxchronxo

  • Marion, IL
  • 06:33 (UTC -05:00)
View GitHub Profile
// ==UserScript==
// @name typing club - no ads
// @namespace http://fehrenbacher.com
// @description remove ads
// @downloadUrl https://gist.github.com/oxchronxo/8296cccf974c5f0a851a467b23097239/raw/d98d53a2b0b35dceb2f6d970f850b75b58b8bd14/typingclub.user.js
// @include http*://*.typingclub.com/*
// @version 1.3
// @require http://code.jquery.com/jquery-1.11.1.min.js
// @require http://code.jquery.com/jquery-2.1.3.min.js
// @grant unsafeWindow
// ==UserScript==
// @name Pandora tabs
// @namespace http://fehrenbacher.com
// @description adds buttons that search for the current song title and artist on YouTube or Google
// @downloadUrl https://gist.github.com/oxchronxo/920b078334d6e9c8c3f4aeb5ad3e4279/raw/bec32ed408c5e259ba83f1db97d8094a9e1eef50/pandora-tab.user.js
// @include http*://*.pandora.com/*
// @version 1.3
// @grant none
// ==/UserScript==
var title = document.getElementsByClassName('songTitle') [0].text; //get the song title
// ==UserScript==
// @name tunein-no-popups
// @namespace https://gist.githubusercontent.com/oxchronxo/3d2f44e1735f24e6cc7e/raw/ae3e713302453cbbab02527d7574574d9bee29d9/tunein-ads
// @description remove popups
// @version 1
// @author Eric Fehrenbacher
// @match *://*.tunein.com/*
// @require http://code.jquery.com/jquery-1.11.1.min.js
// @require http://code.jquery.com/jquery-2.1.3.min.js
// @noframes
// ==UserScript==
// @name roblox-no-ads
// @namespace https://gist.githubusercontent.com/oxchronxo/a6ca3efb6da9ed436d90/raw/17e8007d6d6baf785924a78dad2dc09d264c8090/roblox-ads
// @description removes ads
// @match *://*.roblox.com/*
// @include *://*.roblox.com/*
// @version 1
// @require http://code.jquery.com/jquery-1.11.1.min.js
// @require http://code.jquery.com/jquery-2.1.3.min.js
// @noframes
// ==UserScript==
// @name YMAC = (Y)ahoo (M)ail (A)d (C)leaner
// @description Remove ads in Yahoo Mail
// @version 1.26
// @date 30.11.2015
// @author Eric Fehrenbacher
// @grant metadata
// @updateUrl https://gist.github.com/oxchronxo/c8865a58dc297980fcf7/raw/ymac.user.js
// @downloadUrl https://gist.github.com/oxchronxo/c8865a58dc297980fcf7/raw/ymac.user.js
// @include http://*.mail.yahoo-inc.com/*
if (typeof(KONtx.control.Keyboard._createValueManager) == "undefined") {
KONtx.control.Keyboard.implement({
initialize: function () {
if (this.config.manageValue !== false) {
this._createValueManager();
this.parent();
this._remapKeyboardEvents();
this._remapKeyboardMethods();
} else {
this.parent();
if (KONtx.system.FullscreenView.prototype._onUnselectView === KONtx.system.WindowedView.prototype._onUnselectView) {
KONtx.system.FullscreenView.implement({
_onHideView: function (event) {
this.visible = false;
this.backParams = {};
},
_onUnselectView: function (event) {
this.parent(event);
if (this.fire("onHideView")) {
this.hideView();