Created
February 10, 2016 19:06
-
-
Save Roger/fcf6f0b0b05433d9ed62 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 skype redirector | |
// @description redirect broken skype pish urls | |
// @namespace r0x0r | |
// @include https://api.asm.skype.com/s/i* | |
// @version 1 | |
// @grant none | |
// ==/UserScript== | |
var loc = window.location.href; | |
var id = loc.substring(loc.indexOf('?') + 1, loc.length); | |
window.location.replace("https://api.asm.skype.com/v1/objects/"+ id +"/views/imgpsh_fullsize"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment