Posts Tagged ‘firefox’

简易淘宝 Firefox插件 Simplified Taobao.com

貌似这段时间大家在讨论淘宝的简易版首页~~

让我想起我之前写的一个插件。简化淘宝网站,包括:首页、搜索结果列表页面、宝贝详情页面。
首页只剩下搜索框和类目列表~

需要安装的是:
Firefox
stylish 插件 https://addons.mozilla.org/en-US/firefox/addon/2108
然后安装Simplified Taobao.com by om19.cn样式 http://userstyles.org/styles/16495

优化后截图见附件~~

2009-05-27_091709.png

反成都电信流氓广告3.0 Firefox插件 Anti-iPush 3.0 For Firefox Greasemonkey

啥也别说了,你应该对成都电信的流氓的6秒跳转广告恶心不已。

上次2.0的版本早已无效。经过重新研究,终于,Anti-iPush 3.0横空出世!

请先确认你是否安装Greasemonkey插件,Greasemonkey下载:

https://addons.mozilla.org/en-US/firefox/addon/748

Anti-iPush 3.0下载:

http://www.om19.cn/images/AntiiPush.user.js

AntiTelecom 2.0 for Firefox Greasemonkey

经过研究,终于,Anti Telecom 2.0横空出世!

Greasemonkey下载:
https://addons.mozilla.org/en-US/firefox/addon/748

Anti Telecom 2.01下载:
http://www.om19.cn/images/antitelecom.user.js

Anti Telecom 2.02Beta下载:
http://www.om19.cn/images/antitelecombeta.user.js

Firefox overflow 清除上一个aP元素的Bug

xHTML部分:

<div class="aPWrap">
  <div class="aP">aP</div>
</div>
<div class="S">S</div>

CSS:

body{
    margin:0;
    padding:0;
}
.S{
    overflow:hidden;
    
    background-color:#00f;height:30px;width:30px;color:#fff;
}
.aP {
    position:absolute;
    
    left:15px;top:15px;
    background-color:#f00;height:30px;width:30px;color:#fff;
}
.aPWrap{
    overflow:auto;
    
    background-color:#0f0;
}

Firefox中的div.S(蓝色小块) 会清除 div.aP(红色小块) 与 div.S 重叠的部分。
解决办法调换 div.aPWrap 和 div.S 在xHTML中之间的位置。

演示地址:www.om19.cn/images/ffotf.html

Firefox截图如下

IE(这次IE表现不错)截图如下

此Bug出现于Firefox 1.5/Firefox 2.0(Win)
在其他浏览器 Firefox(Mac/Linux), Safri, Opera, IE, Minefield中均正常。