Google+タイトル表示変更

    @@ -5,6 +5,11 @@ * @license MIT License * @require jquery */ +var s = document.createElement("script"); +s.src = "http://code.jquery.com/jquery-1.4.2.min.js"; +s.charset = "UTF-8"; +document.body.appendChild(s); + $(document).ready(function(){ (function(d){ if(d.match("plus\.google\.com")){
  • /*
     * @title Google+タイトル表示変更
     * @description Google+の通知をタイトルに「Google+ (X)」の形式で表示します。
     * @include *
     * @license MIT License
     * @require jquery
     */
    var s = document.createElement("script");
    s.src = "http://code.jquery.com/jquery-1.4.2.min.js";
    s.charset = "UTF-8";
    document.body.appendChild(s);
    
    $(document).ready(function(){
    (function(d){
      if(d.match("plus\.google\.com")){
        $.get("https://mail.google.com/mail/feed/atom", function(data){console.log(data)});
        // Notification
        setInterval(function(){
          var d = document.getElementById("gbi1");
          if(d)
            if(d.innerHTML != " ") {
              var title = document.title;
              if (title.lastIndexOf("(") >= 0) 
                title = title.substring(0,title.lastIndexOf("(") - 1);
              document.title = title + " (" + d.innerHTML + ")";
            }
        },1000);
      }
    })(document.domain);
    });
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2011/10/11 18:00:03 - 2011-10-11
  2. 2011/10/11 17:57:56 - 2011-10-11
  3. 2011/07/03 14:47:31 - 2011-07-03
  4. 2011/07/03 14:47:19 - 2011-07-03
  5. 2011/07/03 14:34:50 - 2011-07-03
  6. 2011/07/03 14:31:38 - 2011-07-03
  7. 2011/07/02 23:42:46 - 2011-07-02
  8. 2011/07/02 23:20:37 - 2011-07-02
  9. 2011/07/02 23:18:23 - 2011-07-02
  10. 2011/07/02 09:41:59 - 2011-07-02
  11. 2011/07/02 09:24:48 - 2011-07-02
  12. 2011/07/02 09:22:13 - 2011-07-02
  13. 2011/07/02 09:20:58 - 2011-07-02
  14. 2011/07/02 09:18:07 - 2011-07-02
  15. 2011/07/02 08:54:27 - 2011-07-02
  16. 2011/07/02 08:53:11 - 2011-07-02
  17. 2011/07/02 08:52:02 - 2011-07-02
  18. 2011/07/02 08:49:48 - 2011-07-02
  19. 2011/07/02 08:44:32 - 2011-07-02
  20. 2011/07/02 08:41:50 - 2011-07-02
  21. 2011/07/02 08:37:22 - 2011-07-02
  22. 2011/07/02 08:35:13 - 2011-07-02
  23. 2011/07/02 08:33:57 - 2011-07-02
  24. 2011/07/01 19:13:40 - 2011-07-01
  25. 2011/07/01 18:53:54 - 2011-07-01
  26. 2011/07/01 18:47:40 - 2011-07-01
  27. 2011/07/01 18:43:50 - 2011-07-01
  28. 2011/07/01 18:35:10 - 2011-07-01