>Форум Mozilla Россия http://forum.mozilla-russia.org/index.php >Скрипты http://forum.mozilla-russia.org/viewforum.php?id=37 >"Ночной" режим firefox http://forum.mozilla-russia.org/viewtopic.php?id=76117 |
lianaj > 30-11-2020 08:20:08 |
есть скрипт x.uc.js скрытый текст (function() { function customNewTab () { var {spec} = gBrowser.currentURI; var currentTime = new Date().getHours(); if (currentTime > 18 || currentTime < 6) { document.querySelector('#navigator-toolbox').style.cssText = cssFix; } }()); в общем нашел такой вариант однако получается проблема в том что теперь изменения применяются только к 2й новой вкладке подскажите кто знает как пофиксить ? |
lianaj > 30-11-2020 23:48:39 |
в общем потратив более 10 часов на то чтобы не много разобраться в js таки получилось скрытый текст // ==UserScript== // @name Custom New Tab // @version 1.0 // @description Load a custom link or local file, instead of the default new tab page (about:newtab). // @author https://www.reddit.com/user/Luke-Baker/ // @license https://creativecommons.org/licenses/by-sa/4.0/ // @compatibility Created 2018-01-15. Tested on Firefox 71. // ==/UserScript== // For Firefox 72 onward, see the autoconfig alternative to this: (function() { return; |