Created
January 12, 2017 16:54
-
-
Save u8sand/01e2b146accb8522e47f13ae71fda493 to your computer and use it in GitHub Desktop.
Bookmark for eliminating intermediary links on certain sites. `http://middleman?url=http://actualurl/` -> `http://actualurl/`
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
| javascript:(function(){a=document.getElementsByTagName('a');for(i=0;i<a.length;i++){b=a[i].href.split('http://');a[i].href='http://'+b[b.length-1];}})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment