Created
July 25, 2016 15:19
-
-
Save oflow/d94b643e3e723cc4611268c3c6a8868e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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