C# 网络浏览器 Gmail 广告

发布于 2024-10-20 08:03:15 字数 152 浏览 1 评论 0原文

我正在创建一个 C# 应用程序,用于显示 google 在线应用程序,特别是在这种情况下的 Gmail。一切都很顺利,除了我不知道如何隐藏 Firefox 和 Chrome 插件的广告。

有人对我如何像 Firefox/Chrome 插件一样以编程方式隐藏广告有任何建议吗?

I am creating a C# application that displays the google online applications, specifically Gmail in this situation. All is going well except that I do not know how to hide the ads that plugins that Firefox and Chrome have.

Anyone have any suggestions how I programmatically hide ads like the Firefox/Chrome plugins do?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

甩你一脸翔 2024-10-27 08:03:15

将 CSS 规则插入包含广告列表的页面,并设置 display:none;

示例:

<style type="text/css">
.classname,.anotherclassname,#idname{
display:none;
}
</style>

Insert a CSS rule into the page with lists of the ads, and make the display:none;

Example:

<style type="text/css">
.classname,.anotherclassname,#idname{
display:none;
}
</style>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文