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);
    }


  • 相关阅读:
    WebView用法与JS交互(2) 响应webview中的图片点击事件
    出栈序列(栈和队列)
    Log Files
    Mr. Frog’s Game
    Comparison of Android versions
    Linearization of the kernel functions in SVM
    Game of Nuts
    Easy Summation
    Automatic Judge
    Coprime Sequence
  • 原文地址:https://www.cnblogs.com/sekihin/p/1033159.html
  • Copyright © 2011-2022 走看看
    Creative Commons License 本作品采用 知识共享署名-非商业性使用 2.5 中国大陆许可协议进行许可。