Skip to content

Instantly share code, notes, and snippets.

@clsr
Last active January 7, 2016 02:22
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save clsr/3f5ca796463a0e6fc8af to your computer and use it in GitHub Desktop.
Save clsr/3f5ca796463a0e6fc8af to your computer and use it in GitHub Desktop.
Fixes FuckFuckAdBlock.user.js' modifications to window.fuckAdBlock
/*
This software is released into public domain.
It is provided "as is", without warranties or conditions of any kind.
Anyone is free to use, modify, redistribute and do anything with this software.
*/
if (!(window.fuckAdBlock instanceof window.FuckAdBlock)) {
var fab = new window.FuckAdBlock(window.fuckAdBlock._options);
for (var field in fab) {
window.fuckAdBlock[field] = fab[field];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment