Hatena Haiku remove Import StarFriends

    @@ -1,6 +1,6 @@ /* * @title Hatena Haiku remove Import StarFriends - * @description はてなハイクアンテナのImport StarFriendsを非表示にする。Greasemonkeyでのみ動作。 + * @description はてなハイクアンテナのImport StarFriendsを非表示にする。 * @include http://h.hatena.ne.jp/*following * @include http://h1beta.hatena.ne.jp/*following * @include http://h.hatena.com/*following @@ -9,5 +9,8 @@ */ (function() { -GM_addStyle('.import-starfriends{display:none;}'); +var s = document.createElement('style'); +s.setAttribute('type', 'text/css'); +s.innerHTML='.import-starfriends{display:none;}'; +document.getElementsByTagName('head').item(0).appendChild(s); })();
  • /*
     * @title Hatena Haiku remove Import StarFriends
     * @description はてなハイクアンテナのImport StarFriendsを非表示にする。
     * @include http://h.hatena.ne.jp/*following
     * @include http://h1beta.hatena.ne.jp/*following
     * @include http://h.hatena.com/*following
     * @include http://h1beta.hatena.com/*following
     * @license MIT License
     */
    
    (function() {
    var s = document.createElement('style');
    s.setAttribute('type', 'text/css');
    s.innerHTML='.import-starfriends{display:none;}';
    document.getElementsByTagName('head').item(0).appendChild(s);
    })();
    
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2014/05/02 00:36:38 - 2014-05-02
  2. 2012/10/29 15:18:08 - 2012-10-29
  3. 2012/10/29 15:16:28 - 2012-10-29