>Форум Mozilla Россия http://forum.mozilla-russia.org/index.php >Разработка http://forum.mozilla-russia.org/viewforum.php?id=18 >userscript через userChrome.css http://forum.mozilla-russia.org/viewtopic.php?id=74445 |
AlexBob > 05-04-2019 10:53:28 |
Здравствуйте! С помощью userscript'а на определённом сайте (@include https://www.mysite.ru) убирается DIV. Скажите, пожалуйста, можно ли всего одну строчку скрипта запустить через userChrome.css? Почему просто не использовать Userscript Manаger?! Спасибо! |
Vitaliy V. > 05-04-2019 15:35:43 |
AlexBob пишет
через userContent.css, например удалить #brdtitle на этом форуме скрытый текст Выделить код Код:@namespace url("http://www.w3.org/1999/xhtml"); @-moz-document domain("mozilla-russia.org") { #brdtitle { -moz-binding: url("./userContent.xml#remove") !important; } } userContent.xml скрытый текст Выделить код Код:<?xml version="1.0"?> <bindings xmlns="http://www.mozilla.org/xbl"> <binding id="remove" bindToUntrustedContent="true"> <implementation> <constructor><![CDATA[ this.remove(); ]]></constructor> </implementation> </binding> </bindings> можно без userContent.xml - всё встроить в css как в тех кнопках, дело ваше |