>>149 CSSつかって高速化してみた
自分のところでは特に遅くなったようには感じられない
userContent.cssに、
a[href$=".pdf"]{
-moz-binding: url("pdf.xml#google");
}
それと同じ階層にpdf.xmlという名前で、
<?xml version="1.0"?>
<bindings xmlns="
http://www.mozilla.org/xbl">
<binding id="google">
<implementation><constructor><![CDATA[
this.href = '
http://docs.google.com/viewer?url=' + this.href;
]]></constructor></implementation>
</binding>
</bindings>