Skip to content

Instantly share code, notes, and snippets.

@oflow
Created July 25, 2016 15:19
Show Gist options
  • Save oflow/d94b643e3e723cc4611268c3c6a8868e to your computer and use it in GitHub Desktop.
Save oflow/d94b643e3e723cc4611268c3c6a8868e to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Redirect Linkis.com
// @description fuckin' ln.is iframe
// @include http://linkis.com/*
// ==/UserScript==
(function() {
var iframe = document.getElementById('source_site');
if (iframe) location.replace(iframe.src);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment