Skip to content

Instantly share code, notes, and snippets.

@Roger
Created February 10, 2016 19:06
Show Gist options
  • Save Roger/fcf6f0b0b05433d9ed62 to your computer and use it in GitHub Desktop.
Save Roger/fcf6f0b0b05433d9ed62 to your computer and use it in GitHub Desktop.
// ==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