opera:hige このページをアンテナに追加

 | 

2007-02-19

[UserJS] del.icio.us の その場で編集をやめる。 11:15  [UserJS] del.icio.us の その場で編集をやめる。 - opera:hige を含むブックマーク はてなブックマーク -  [UserJS] del.icio.us の その場で編集をやめる。 - opera:hige

前に作った覚えがあるのと kuruma さんもつくっていたけど,不具合があったような気がしたので作りなおした。


deliciousPreventAjaxEdit.js

if(location.href.indexOf('http://del.icio.us') == 0) {
    window.opera.addEventListener(
        'BeforeScript',
        function (e) {
            if(e.element.getAttribute('src').match(/ui\/static\/delicious\.js/)) {
                e.element.text = e.element.text.replace(/shareNo:\spostNo,/, "shareNo: postNo");
                e.element.text = e.element.text.replace(/edit:\seditPost/, "");
            }
        },      
        false
    );      
}

del.icio.us の スクリプト自体を書き換えているので変更されたら動く保証はない。


修正 19:35

トラックバック - http://orera.g.hatena.ne.jp/higeorange/20070219
 |