0
我想將彈出圖標添加到URL欄旁邊的區域,就像Firebug圖標所在的區域一樣。圖書館這樣做,(由以前的回答推薦:Firefox extension icon on the navigation bar using the Add-on builder)使用Firefox中的工具欄按鈕庫
如何使用該庫與我的Firefox擴展?該圖標現在位於FF窗口的右下方,並且非常小。
謝謝!
我想將彈出圖標添加到URL欄旁邊的區域,就像Firebug圖標所在的區域一樣。圖書館這樣做,(由以前的回答推薦:Firefox extension icon on the navigation bar using the Add-on builder)使用Firefox中的工具欄按鈕庫
如何使用該庫與我的Firefox擴展?該圖標現在位於FF窗口的右下方,並且非常小。
謝謝!
下載這個包: https://github.com/voldsoftware/toolbarbutton-jplib
添加toolbarbutton.js
到您的lib文件夾。您也可以添加listen.js
和unload+.js
。 (該依賴關係)
添加在exports.main
函數以下代碼:
// create toolbarbutton
var tbb = toolbar.ToolbarButton({
id: "TBB-TEST",
label: "TBB TEST",
onCommand: function() {
tbb.destroy(); // kills the toolbar button
}
});
if (require('self').loadReason == "install") {
tbb.moveTo({
toolbarID: "nav-bar",
forceMove: false // only move from palette
});
}
此默認添加的新圖標的導航工具欄的陣列。去圖:)