How can I change the window size by using an extension? On an example of the search window. Or button size or any elements(items)?
I think you must edit XUL and LESS files. It’s responsible for the interface.
Somewhere I saw an article that described how through extension resize windows and items. But now I can not find.
Я где-то видел статью, в которой рассказывалось как через расширение изменять размер окон и элементов. Но теперь не могу найти. Я хочу изменить размер окна поиска. Надписи не влезают)
А как послать приватное сообщение?
How to I send private message?
Click on user nickname - Visit Profile - Private message
Hee’s the macro I use to center and resize my window for screenshots:
window.outerWidth = 1080;
window.outerHeight= 608;
window.screenX = (window.screen.availWidth - window.outerWidth) / 2;
window.screenY = (window.screen.availHeight - window.outerHeight) / 2;