简体   繁体   English

关闭eBay JavaScript警告

[英]switch off ebay javascript warning

I am most of the time using browsers with JavaScript switched off, and no pictures. 我大多数时候都使用关闭了JavaScript且没有图片的浏览器。 At Ebay they give me a warning message("Please activate JavaScript") that stays right in the middle of the screen - is there a way to turn that off? 在Ebay上,他们给我一个警告消息(“请激活JavaScript”),该消息一直停留在屏幕中间-是否有办法将其关闭? This seems to be css styling: 这似乎是CSS样式:

<!DOCTYPE html>
<html class="no-touch" lang="de">

<head></head>
<body class="sz1200 full-width LV FIREFOX FIREFOX_35 FIREFOX_35_0">
    <noscript class="nojs">
        <div class="nojs-msk"></div>
        <div class="nojs-msg shdw"></div>
    </noscript>
    <div id="Head"></div>
    <div id="Body"></div>
    <div id="Foot"></div>
    <div id="HtmlFrags"></div>
    <div id="JSDF"></div>
</body>
</html>

I tried disabling css (Disable CSS 1.0 for Firefox) but that works on all elements - what makes the page unreadable. 我尝试禁用css(对于Firefox禁用CSS 1.0),但是它适用于所有元素-是什么导致页面不可读。
Can I make Firefox ignore just those two classes? 我可以让Firefox只忽略这两个类吗?

You could create a userscript to do this. 您可以创建一个用户脚本来执行此操作。

GM_addStyle ('.nojs {display: none;}');

Grease Monkey | 油脂猴子 Userscripts how-to 用户脚本使用方法

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM