forked from lastdream2013/userChrome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontextHistoryMenuLite.uc.xul
25 lines (24 loc) · 1.04 KB
/
contextHistoryMenuLite.uc.xul
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE overlay [
<!ENTITY % browserDTD SYSTEM "chrome://browser/locale/browser.dtd" >
%browserDTD;
]>
<overlay id="ffh-overlay" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<menupopup id="contentAreaContextMenu">
<menu id="Context_historyMenu" label="&historyMenu.label;" accesskey="s" insertbefore="context-openlinkincurrent">
<menupopup id="Context_historyMenuLite_popup"
placespopup="true"
oncommand="this.parentNode._placesView._onCommand(event);"
onpopupshowing="if (!this.parentNode._placesView) new HistoryMenu(event);">
<menuitem label="&showAllHistoryCmd2.label;"
command="Browser:ShowAllHistory"
key="showAllHistoryKb"/>
<menuitem
label="&clearRecentHistory.label;"
key="key_sanitize"
command="Tools:Sanitize"/>
<menuseparator class="hide-if-empty-places-result"/>
</menupopup>
</menu>
</menupopup>
</overlay>