Favstarで表示

  • /*
     * @title Favstarで表示
     * @description TwitterのツイートをFavstarで表示
     * @include http://twitter.com/* https://twitter.com/*
     * @license MIT License
     * @require 
     */
    (function(){
      var tweet_id,
          m=location.href.match(/\/status\/(\d+)$/);
      if(m){
        tweet_id=m[1];
        location.href="http://ja.favstar.fm/t/"+tweet_id;
      }
    })();
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2012/11/28 16:11:59 - 2012-11-28