有没有可以智能定制网页的浏览器插件?

发布于 2024-10-06 20:50:08 字数 197 浏览 4 评论 0原文

我通常使用 Firebug 来删除不需要的 div 和标签,并调整网页上的内容大小。经常用于 chessbomb 等游戏网站。但这很乏味,每次重新加载选项卡时,我都必须重新做一遍。

那么是否有任何插件可以记住特定站点的设置并将其应用于负载本身。对于初学者来说,我只需要一些东西来根据名称删除 div 标签。如果它也可以调整大小那就更有用了。

谢谢。

I generally use firebug to remove unwanted divs and tags and resize stuff on the web-page .. frequently for gaming sites like chessbomb. But this is tedious, and every time tab reloads, i would have to do it all over again.

So is there any plugin which would remember the setting for particular site and apply it on the load itself. For starters i just need something to remove div tags based on names. If it can resize too then thats all the more useful.

Thanks.

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

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

发布评论

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

评论(2

终止放荡 2024-10-13 20:50:08

您可以将 Adblock Plus 与一些 CSS 选择器结合使用来执行此操作。请在此处查看与此相关的文档。

例如,您可能可以使用类似的方法

domain.com##div.class

来隐藏这些 div。

You can use Adblock Plus with some CSS selector usage to do this. Look at the doc related to this here.

For example, you could probably use something like

domain.com##div.class

to hide those divs.

爱的那么颓废 2024-10-13 20:50:08

这是 greasemonkey firefox 插件 的用例。您需要了解一点 JavaScript,但是如果您在 Firebug 中执行这些操作,我想您不会觉得 Greemonkey 太困难。

看看 http://www.greasespot.net/http://userscripts.org/,您甚至可能会发现有人已经编写了您想要的脚本。

引用关于 Greasemonkey 的维基百科

Greasemonkey 是一个 Mozilla Firefox 扩展,允许用户安装脚本,在 DOMContentLoaded 事件上对 HTML 网页内容进行动态更改,该事件在浏览器加载后立即发生(也称为增强浏览) .

由于 Greasemonkey 脚本是持久性的,因此每次打开页面时都会执行对网页所做的更改,从而使这些更改对于运行脚本的用户来说实际上是永久的。

This is a use case for the greasemonkey firefox plugin. You'll need to know a little javascript, but if you're doing these sorts of things in Firebug, I would assume you won't find greasemonkey too dofficult.

Have a look at http://www.greasespot.net/ and http://userscripts.org/ and you may even find someone has already written the script you're after.

To quote wikipedia on Greasemonkey:

Greasemonkey is a Mozilla Firefox extension that allows users to install scripts that make on-the-fly changes to HTML web page content on the DOMContentLoaded event, which happens immediately after it is loaded in the browser (also known as augmented browsing).

As Greasemonkey scripts are persistent, the changes made to the web pages are executed every time the page is opened, making them effectively permanent for the user running the script.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文