/usr/share/xul-ext/greasemonkey/content/addons4.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 | <?xml version="1.0"?>
<overlay id="greasemonkey-browser-overlay"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
>
<!-- Just injects the Firefox 4+ specific addons integration code. -->
<script type="application/x-javascript"><![CDATA[
window.addEventListener('load', function() {
var addons = {};
Components.utils.import("resource://greasemonkey/addons4.js", addons);
addons.GM_addonsStartup();
}, true);
// Open the scripts manager in Firefox >= 4.0
function GM_OpenScriptsMgr() {
BrowserOpenAddonsMgr('addons://list/greasemonkey-user-script');
}
// Open the updates manager in Firefox >= 4.0
function GM_OpenUpdatesMgr() {
BrowserOpenAddonsMgr('addons://updates/available');
}
]]></script>
</overlay>
|