使用 Greasemonkey 在页面加载之前更改 CSS
我需要在加载之前使用 Greasemonkey 隐藏页面上的元素(以便它永远不可见)。
目前我正在使用我相当熟悉的 jQuery 1.3.2,但我不确定它如何与 Greasemonkey 交互,所以我不知道如何实现这一点!
非常感谢,
JP
I need to hide an element on the page using greasemonkey before it loads (so that it's never visible).
At the moment I'm @require
ing jQuery 1.3.2 which I'm reasonably familiar with, but I'm unsure how it interacts with greasemonkey so I don't know how to pull this off!
Many thanks,
JP
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Greasemonkey 无法为您执行此操作,这是您应该使用用户风格的场景之一。
许多编写用户脚本的人还会创建一个可以与用户脚本一起使用的用户样式,这会在页面加载之前更改 CSS 样式,以改善用户体验。通常他们会将用户脚本上传到 userscripts.org 并在描述中添加一个链接到 userstyles.org。
Greasemonkey cannot do this for you, this is one of the scenarios where you should use a userstyle.
Many people who write userscripts also create a userstyle that can go along with the userscript, which will change CSS styles before the page loads, to improve the user experience. Usually they upload their userscript to userscripts.org and add a link in the description to the associated userstyle on userstyles.org.