2017-03-08   javascript   web   twitter   favstar 

Favstar.fmから、Twitterの元ツイートページにジャンプする方法(FavstarJumper Bookmarkletを使う)

背景

問題

解法

FavstarJumper Bookmarklet

function start() {
  if (location.href.match(/\/\/favstar.fm\/users\/(.+\/status\/\d+)/)) {
    location = 'https://twitter.com/' + RegExp.$1;
  } else {
    alert("This is not favstar.fm tweet page.");
  }
}
start();

実行の様子

注意

 2017-03-08   javascript   web   twitter   favstar