Created
April 18, 2009 03:28
-
-
Save mpen/97413 to your computer and use it in GitHub Desktop.
Firefox メニューバー/コンテキストメニューからいらない項目を削除
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@charset "utf-8"; | |
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); | |
/* | |
chrome://browser/content/browser.xul | |
メニューバー | |
#main-menubar | |
ナビゲーションツールバー | |
#nav-bar | |
タブのコンテキストメニュー | |
#context_newTab 周辺 | |
HTML部分のコンテキストメニュー | |
#contentAreaContextMenu | |
*/ | |
/* メニューバー */ | |
#history-menu, /* 履歴 */ | |
#bookmarksMenuPopup #subscribeToPageMenuitem, /* ブックマーク > このページを購読 */ | |
#bookmarksMenuPopup #subscribeToPageMenupopup, /* ブックマーク > このページを購読 */ | |
#bookmarksMenuPopup menuitem:not(.bookmark-item)[label="タブですべて開く"], /* ブックマーク > タブですべて開く */ | |
#bookmarksMenuPopup menuseparator[builder="end"], /* ブックマーク > タブですべて開く */ | |
/* HTML部分のコンテキストメニュー */ | |
#context-openlink, /* リンクを新しいウィンドウで開く */ | |
#context-openlinkintab, /* リンクを新しいタブで開く */ | |
#context-sendlink, /* リンクの URL をメールで送信... */ | |
#context-copyimage-contents, /* 画像をコピー */ | |
#context-sendimage, /* 画像をメールで送信... */ | |
#context-setDesktopBackground, /* デスクトップの背景に設定... */ | |
#context-back, /* 戻る */ | |
#context-forward, /* 進む */ | |
#context-reload, /* 更新 */ | |
#context-stop, /* 中止 */ | |
#context-sep-stop, | |
#context-bookmarkpage, /* このページをブックマーク */ | |
#context-savepage, /* 名前を付けてページを保存... */ | |
#context-sendpage, /* ページの URL をメールで送信... */ | |
#context-sep-viewbgimage, | |
#context-viewbgimage, /* 背景画像だけを表示 */ | |
#context-undo, /* 元に戻す */ | |
#context-sep-undo, | |
#context-cut, /* 切り取り */ | |
#context-copy, /* コピー */ | |
#context-paste, /* 貼り付け */ | |
#context-delete, /* 削除 */ | |
#context-sep-paste, | |
#context-selectall, /* すべて選択 */ | |
#context-sep-selectall, | |
#context-keywordfield, /* この検索にキーワードを設定... */ | |
#spell-add-dictionaries-main, /* 辞書を追加... */ | |
#context-sep-bidi, | |
#context-bidi-text-direction-toggle, /* テキストの方向を切り替える */ | |
#context-bidi-page-direction-toggle, /* ページの方向を切り替える */ | |
/* HTML部分のコンテキストメニュー Auto Pager */ | |
#autopager-context-separator1, | |
#autopager-context-menu /* Auto Pager */ | |
{ | |
display: none !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment