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