>Форум Mozilla Россия http://forum.mozilla-russia.org/index.php >Firefox http://forum.mozilla-russia.org/viewforum.php?id=4 >Можно ли отключить горячие клавиши в Firefox http://forum.mozilla-russia.org/viewtopic.php?id=74738 |
Cool_T > 05-07-2019 15:05:16 |
Можно ли отключить горячие клавиши в Firefox ? |
Wlad_8 > 06-07-2019 07:23:20 |
Cool_T userChrome.xml скрытый текст Выделить код Код:<bindings id="generalBindings" xmlns="http://www.mozilla.org/xbl" xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" xmlns:xbl="http://www.mozilla.org/xbl"> <binding id="js" extends="chrome://global/content/bindings/toolbarbutton.xml#menu"> <implementation> <constructor><![CDATA[ function makeRelativePathURI(name) { let absolutePath = Components.stack.filename; return absolutePath.substring(0, absolutePath.lastIndexOf("/") + 1) + name; } // The following code executes in the browser context, // i.e. chrome://browser/content/browser.xul Services.scriptloader.loadSubScript(makeRelativePathURI("userChrome.js"), window); ]]></constructor> </implementation> </binding> </bindings> userChrome.css скрытый текст Выделить код Код:@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul); toolbarbutton#alltabs-button { -moz-binding: url("userChrome.xml#js"); } userChrome.js скрытый текст Данный userChrome.js отключает сочетание CTRL+B. Для других сочетаний нужно изменить только код для userChrome.js. Где его найти или как создать для других сочетаний, мне неизвестно. |