Skip to content

Instantly share code, notes, and snippets.

@Linusp
Created May 17, 2017 14:04
Show Gist options
  • Save Linusp/63e3c688c2be2dd72cc19502423fe6c3 to your computer and use it in GitHub Desktop.
Save Linusp/63e3c688c2be2dd72cc19502423fe6c3 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Weiboda Redirection
// @name:zh-CN 微博档案真实链接地址重定向
// @description 获取微博档案中的原始链接地址
// @grant none
// @run-at document-start
// @include *//weibo.wbdacdn.com/url/*
// ==/UserScript==
!function(){
console.log("1:" + location.href);
var get = location.href.match(/weibo.wbdacdn.com\/url\/t\/(.{1,})\//);
console.log(get);
if(get && get.length>=2)
location.href = decodeURIComponent("http://t.cn/" + get[1]);
console.log("2:" + location.href);
}();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment