0

我正在为 FF 开发一个扩展。我要做的是在创建新书签时捕获一个事件,然后将附加控件添加到书签弹出窗口中。我已经寻找了很长时间没有任何成功的正确方法。任何帮助将不胜感激。

4

2 回答 2

0

监听editBookmarkPanelpopupshown的事件

于 2013-02-07T11:39:49.660 回答
0

好的,所以我找到了解决方案:

/* Override the original browser Click event on the star button */
PlacesStarButton.onClick = function PSB_onClick(aEvent){
    // Ignore clicks on the star while we update its state.
    if (aEvent.button == 0 && !this._pendingStmt) {
        PlacesCommandHook.bookmarkCurrentPage(true);
    }
    // Don't bubble to the textbox, to avoid unwanted selection of the address.
    aEvent.stopPropagation();
}
于 2013-02-11T09:40:27.870 回答