有没有可以智能定制网页的浏览器插件?
我通常使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以将 Adblock Plus 与一些 CSS 选择器结合使用来执行此操作。请在此处查看与此相关的文档。
例如,您可能可以使用类似的方法
来隐藏这些 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
to hide those divs.
这是 greasemonkey firefox 插件 的用例。您需要了解一点 JavaScript,但是如果您在 Firebug 中执行这些操作,我想您不会觉得 Greemonkey 太困难。
看看 http://www.greasespot.net/ 和 http://userscripts.org/,您甚至可能会发现有人已经编写了您想要的脚本。
引用关于 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: