Greasemonkey onmousemove 脚本

发布于 2024-08-23 18:46:34 字数 771 浏览 8 评论 0原文

我有一个用户脚本,它应该在第一个鼠标移动事件上删除某个类的所有图像。

作为编写 Greasemonkey 脚本的新手,好吧,这是我的第一个脚本,我认为只是缺少一些小东西。

// ==UserScript==
// @name aname
// @namespace anamespace
// @description adescription
// @include        http://www.google.com/search*
// @include        http://www.google.com/webhp*
// @include        http://www.google.com/#*
// @include        http://www.google.com/
// ==/UserScript==
var removeTags = function () {
    var allHTMLTags = window.document.getElementsByTagName("*");
    for (i=0; i < allHTMLTags.length; i++) {
        if (allHTMLTags[i].className == "l sb-l") {
            allHTMLTags[i].style.display='none';
        }
    }
};
document.captureEvents(Event.MOUSEMOVE);
document.onmousemove = removeTags;

感谢您的帮助!

I have a UserScript which should remove all images of a certain class on the first mousemove-event.

Being pretty new in writing Greasemonkey-scripts, okay this is my first script, I think there is just something small missing.

// ==UserScript==
// @name aname
// @namespace anamespace
// @description adescription
// @include        http://www.google.com/search*
// @include        http://www.google.com/webhp*
// @include        http://www.google.com/#*
// @include        http://www.google.com/
// ==/UserScript==
var removeTags = function () {
    var allHTMLTags = window.document.getElementsByTagName("*");
    for (i=0; i < allHTMLTags.length; i++) {
        if (allHTMLTags[i].className == "l sb-l") {
            allHTMLTags[i].style.display='none';
        }
    }
};
document.captureEvents(Event.MOUSEMOVE);
document.onmousemove = removeTags;

Thanks for your help!

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

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

发布评论

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

评论(1

美羊羊 2024-08-30 18:46:34

尝试添加事件监听器

window.addEventListener('mousemove',removeTags,false);

Try addEventListener

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