-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathbrowser.xul
37 lines (33 loc) · 1.59 KB
/
browser.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
26
27
28
29
30
31
32
33
34
35
36
37
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="chrome://bartab/content/browser.css" type="text/css"?>
<!DOCTYPE overlay SYSTEM "chrome://bartab/locale/overlay.dtd">
<overlay xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
id="bartab-overlay">
<script type="application/javascript" src="browser.js"/>
<stringbundleset id="stringbundleset">
<stringbundle id="bartab-strings"
src="chrome://bartab/locale/overlay.properties"/>
</stringbundleset>
<popupset id="mainPopupSet">
<menupopup id="tabContextMenu">
<menuitem id="context_BarTabUnloadTab"
label="&unloadTab.label;"
tbattr="tabbrowser-multiple"
oncommand="gBrowser.BarTabHandler.unloadTab(gBrowser.mContextTab);"
insertbefore="context_openTabInWindow"/>
<menuitem id="context_BarTabUnloadOtherTabs"
label="&unloadOtherTabs.label;"
tbattr="tabbrowser-multiple"
oncommand="gBrowser.BarTabHandler.unloadOtherTabs(gBrowser.mContextTab);"
insertbefore="context_openTabInWindow"/>
<menuitem id="context_BarTabNeverUnload"
label=""
type="checkbox"
autocheck="false"
oncommand="gBrowser.BarTabHandler.toggleWhitelist(gBrowser.mContextTab);"
insertbefore="context_openTabInWindow"/>
<menuseparator id="context_BarTabSeparator"
insertbefore="context_openTabInWindow"/>
</menupopup>
</popupset>
</overlay>