Created
May 17, 2017 14:04
-
-
Save Linusp/63e3c688c2be2dd72cc19502423fe6c3 to your computer and use it in GitHub Desktop.
This file contains 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 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