将 Greasemonkey 脚本移植到 Chrome

发布于 2024-11-29 08:14:26 字数 728 浏览 0 评论 0原文

我发现了一个 Greasemonkey 脚本,它在 Firefox 中运行良好,但在我首选的浏览器 Chrome 中却不行。 http://userscripts.org/scripts/show/105578

我尝试自己修复它,但是没有运气。 我已经发布了我在调试过程中的发现

我该如何修复它?


更新:(来自OP评论)

通过联系 TamperMonkey 的开发人员使其正常工作。随着 TamperMonkey 的最新测试版及其工作脚本的修改。 请参阅userscripts.org 上的此主题

注意到的另一个问题:Chrome 似乎禁止直接 访问锚点的 href 属性(在某些情况下)。

但是,如果通过 getAttribute() 检索 href 属性 一切正常。

I have found a Greasemonkey script which works fine in Firefox but not in Chrome, which is my preferred browser.
http://userscripts.org/scripts/show/105578

I have tried to fix it myself but without luck.
I have posted my findings during debugging, here.

How do I fix it?


Update: (from OP comment)

Got it working by contacting the developer of TamperMonkey. With the
newest beta of TamperMonkey and a modification of the script it works.
See this thread at userscripts.org.

An additional issue noted: It seems that Chrome forbids the direct
access to the anchor's href attribute (in some cases).

However if the href attribute is retrieved via getAttribute()
everything works fine.

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

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

发布评论

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

评论(1

清旖 2024-12-06 08:14:26

Chrome 本身不支持 GM_ 函数,并且该脚本大量使用跨域 GM_xmlhttpRequest()

最明智的做法是安装Tampermonkey,它可能 按原样运行现有脚本。

Chrome does not support the GM_ functions natively, and that script makes heavy use of cross-domain GM_xmlhttpRequest().

The smartest thing to do is to install Tampermonkey, which can probably run the existing script as is.

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