カスタムをするー……改造?と言うかなんとか、色々です。
/* いらない右クリックメニューを消す */
#context-bookmarkpage,#context-sendimage,#context-sendpage,#context-selectall,#context-setWallpaper,#context-savepage,#context-stop,
#context-back,#context-forward,#context-reload,menuseparator,#context-sendlink,#context-bookmarklink
{display: none;}
#context-bookmarkpage /* このページをブックマーク */ アドレスバー左のアイコンをブックマークサイドバーに入れるので必要なし
/* 検索バーの幅を広げる (400 ピクセルの場合) */
#search-container, #searchbar
{-moz-box-flex: 400 !important;}
/* ページ全体をカーソルデフォルト */
body,td,span,div{cursor: auto ! important;}
:link, :visited{cursor: pointer ! important;}
*{cursor: auto ! important;}だとa要素も通常字になって困るのでこんな感じに。cursor:autoの方は発見しだい追加しかないなーとか。dtとかddも?これ使う人少ないからいいか。
/* blink(点滅)を無効化 */
blink { text-decoration: none ! important; }
user.jsにも
// テキストの点滅を止める
user_pref("browser.blink_allowed", false);
// URLバー・スクロールバーは隠すの禁止
user_pref("dom.disable_window_open_feature.location", true);
user_pref("dom.disable_window_open_feature.scrollbars",true);