コンテキストメニューから不要なものを消す

Firefox 3.5のコンテキストメニューの「xxのURLをメールで送信」の項目が不要なので削除する方法。

userChrome.css を編集。
Windows XPの場合、
%USERPROFILE%\Application Data\Mozilla\Firefox\Profiles\<インストール時に作成された任意の文字列>\chrome
Mac (Snow Leopard)の場合、
${HOME}/Library/Application Support/Firefox/Profiles/<インストール時に作成された任意の文字列>/chrome

/* コンテキストメニューから[リンクを送信][リンクURLをメールで送信][画像をメールで送信]を消す */
#context-sendlink, #context-sendpage, #context-sendimage {
display: none !important;
}