crowy 背景色白に統一

  • /*
     * @title crowy 背景色白に統一
     * @description crowy のメッセージ背景色を白に変更、ツールバーもプルダウンアニメーション式 #crowy
     * @include http://www.crowy.net*
     * @license MIT License
     * @require 
     */
    
    (function(){
      var s = document.createElement('style');
      s.setAttribute("type", "text/css");
      css = '';
      css += 'div#tab-tool-bar {height:5px;transition: 0.35s ease-in-out;-webkit-transition: 0.35s ease-in-out;-moz-transition: 0.35s ease-in-out;}';
      css += 'div#tab-tool-bar:hover {height:37px;}';
      css += '.message {background-color:#FFF;}';
      css += '.message.odd {background-color:#FFF;}';
      css += '.message.new {background-color:papayawhip;}';
      css += '.message-list {color:#000;}';
      css += '.message-text {color:#000;}';
      css += '.facebook .message .comment-count {background-color:LightYellow1;}';
      css += '.facebook .comment .message {background-color:LightYellow2;}';
      css += '.message .column-input {background-color:#FFF;}';
    
      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