zoukankan      html  css  js  c++  java
  • TwiitterNotes自定义样式

    Twitternotes是一个通过Twitter来发布笔记的服务。
    twitternotes
    无需注册,只需要通过Twitter的账户进行登录,之后便能够在线或者是通过Twitter来发布消息了,支持中文。发布的格式为:+ 笔记内容 #标签1,标签2

    可是他的样式太丑了,因此利用Stylish给它作了下美容
    CSS for Stylish

    Greasemonkey过滤了一些图片,换了下logo
    // ==UserScript==
    //
     @name          Twitternotes user style
    //
     @namespace     http://diveintogreasemonkey.org/download/
    //
     @description   force Twitternotes to use new style
    //
     @include       http://twitternotes.com/*
    //
     ==/UserScript==

    var theImage;
    theImage 
    = document.getElementById('logo');
    if (theImage) {
        theImage.src 
    = 'http://farm3.static.flickr.com/2417/2180371328_f9f52dfcd6_o.png';


    var imgAvatar = document.getElementById('profile_avatar');
    if (imgAvatar) {
        imgAvatar.parentNode.removeChild(imgAvatar);
    }


  • 相关阅读:
    wait waitpid
    达梦备份还原
    sigprocmask阻塞信号
    sigaction信号处理
    dd命令
    linux系统启动过程
    cpio建立、还原备份档
    configure详解
    Git入门基础教程
    一篇文章了解Github和Git教程
  • 原文地址:https://www.cnblogs.com/sekihin/p/1033159.html
  • Copyright © 2011-2022 走看看
    Creative Commons License 本作品采用 知识共享署名-非商业性使用 2.5 中国大陆许可协议进行许可。