Skip to content

Instantly share code, notes, and snippets.

@EliteMasterEric
Last active November 26, 2015 17:01
Show Gist options
  • Select an option

  • Save EliteMasterEric/f1dcdf543966c0a65617 to your computer and use it in GitHub Desktop.

Select an option

Save EliteMasterEric/f1dcdf543966c0a65617 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name AutoSkipAdfly (*BROKEN*)
// @namespace MasterEric
// @include http://adfoc.us/serve/?id=*
// @include http://adf.ly/*
// @description Automatically skip ads on adf.ly and adfoc.us
// @version 1
// @grant none
// ==/UserScript==
switch(window.location.hostname){
case "adfoc.us":
window.location.replace($(".skip").attr("href"));
break;
case "adf.ly":
window.location.replace($("#skip_button").attr("href"));
break;
default:
break;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment