Google+タイトル表示変更

    @@ -8,10 +8,9 @@ (function(d){ if(d.match("plus\.google\.com")){ setInterval(function(){ - var d = document.getElementById("gbi1"); - if(d) - if (d.innerHTML.match(/[^0-9]/g)) - document.title = "Google+ (" + d.innerHTML + ")"; + if(document.getElementById("gbi1")) + if (document.getElementById("gbi1").innerHTML.match(/[^0-9]/g)) + document.title = "Google+ (" + document.getElementById("gbi1").innerHTML + ")"; },1000); } })(document.domain);
  • /*
     * @title Google+タイトル表示変更
     * @description Google+の通知をタイトルに「Google+ (X)」の形式で表示する。
     * @include https://plus.google.com/*
     * @license MIT License
     * @require
     */
    (function(d){
      if(d.match("plus\.google\.com")){
        setInterval(function(){
          if(document.getElementById("gbi1"))
            if (document.getElementById("gbi1").innerHTML.match(/[^0-9]/g))
              document.title = "Google+ (" + document.getElementById("gbi1").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