0
在右鍵單擊圖像後,我嘗試在Firefox的上下文菜單中添加一個新項目。 我已閱讀Mozilla網頁上的文檔。 在XUL文件中我有這樣的代碼:在FireFox中添加項目到上下文菜單
<?xml version="1.0"?>
<overlay id="emailpicture" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<script type="application/x-javascript" src="chrome://firefoxextension/content/emailpicture.js"/>
<popup id="contentAreaContextMenu">
<menuitem id="emailpicture" label="Email This Image" oncommand=""/>
</popup>
</overlay>
在chrome.manifest用於我有這樣的代碼:
overlay chrome://browser/content/browser.xul chrome://firefoxextension/content/myext.xul
當我使用Firefox,它沒有添加任何項目。 它似乎像Firefox甚至不運行myext.xul
。 我做錯了什麼?
謝謝您的回答,我改變了它,但還是沒有任何反應。順便說一句,在結束標籤中,我必須改變它,對吧? – Ben
是的,您必須更改結束標籤。 – paa