crowy 背景色白に統一

    
      
  • /*
     * @title crowy 背景色変更
     * @description crowy の背景色をcrowyっぽく変更します。 #crowy
     * @include http://www.crowy.net*
     * @license MIT License
     * @require 
     */
    
    (function(){
      var s = document.createElement('style');
      s.setAttribute("type", "text/css");
      css = '';
      css += '.message {background-color:#000000;}';
      css += '.message.odd {background-color:#000000;}';
      css += '.message-list {color:#ffffff;}';
      css += '.message-text {color:#ffffff;}';
      css += '.facebook .message .comment-count {background-color:#000000;}';
      css += '.facebook .comment .message {background-color:#000000;}';
      css += '.message .column-input {background-color:#333333;}';
    
      s.innerHTML = css;
    
      document.body.appendChild(s);
    })();
    
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2011/10/12 23:27:37 - 2011-10-12
  2. 2011/10/12 23:27:20 - 2011-10-12
  3. 2011/10/07 12:05:40 - 2011-10-07
  4. 2011/10/07 11:59:44 - 2011-10-07
  5. 2011/10/07 11:25:00 - 2011-10-07
  6. 2011/10/07 11:06:32 - 2011-10-07