/usr/share/xul-ext/greasemonkey/content/options.xul is in xul-ext-greasemonkey 1.15-1~deb7u1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | <?xml version="1.0"?>
<!DOCTYPE prefwindow [
<!ENTITY % greasemonkeyDTD SYSTEM "chrome://greasemonkey/locale/greasemonkey.dtd">
<!ENTITY % preferencesDTD SYSTEM "chrome://browser/locale/preferences/preferences.dtd">
%greasemonkeyDTD;
%preferencesDTD;
]>
<?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?>
<?xml-stylesheet href="chrome://greasemonkey/skin/bindings.css" type="text/css"?>
<?xml-stylesheet href="chrome://greasemonkey/skin/options.css" type="text/css"?>
<dialog
title="Greasemonkey - &prefWindow.titleWin;"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
buttons="accept,cancel"
id="greasemonkey-options-dialog"
persist="screenX screenY"
onload="GM_loadOptions()"
ondialogaccept="GM_saveOptions()"
ondialogcancel="close()"
>
<script type="application/x-javascript" src="chrome://greasemonkey/content/options.js" />
<dialogheader title="Greasemonkey" description="&prefWindow.titleWin;"/>
<vbox>
<groupbox>
<caption label="&prefWindow.titleWin;" />
<checkbox id="secure-update" label="&RequireSecureUpdates;" />
<checkbox id="submit-stats" label="&SubmitStats;" />
</groupbox>
<groupbox>
<caption label="&options.experimental;" />
<checkbox id="check-sync" label="&EnableFirefoxSync;" />
</groupbox>
<groupbox>
<caption label="&options.editor;" />
<hbox>
<button oncommand="GM_util.setEditor(1)" label="&options.defaultEditor;" flex="1"/>
<button oncommand="GM_util.setEditor(0)" label="&options.browseForEditor;" flex="1"/>
</hbox>
</groupbox>
<groupbox>
<caption label="&options.globalExcludes;" />
<cludes id="globalExcludes" />
</groupbox>
<groupbox>
<caption label="&options.newScript.template;" />
<checkbox id="newScript-removeUnused" label="&options.newScript.removeUnused;" />
<textbox id="newScript-template" multiline="true" rows="5" />
</groupbox>
</vbox>
</dialog>
|