帮助制作第一个脚本

发布于 2024-10-22 09:51:23 字数 101 浏览 2 评论 0原文

我需要帮助为 GreaseMonkey 编写脚本。 我想要它做的就是按“CTRL”和“TAB”,然后在地址栏中输入 URL。然后重复。

我该怎么做?我从哪里开始? 请帮忙!

I need help with programming a script for GreaseMonkey.
All I want it to do is press "CTRL" and "TAB" and then enter a URL into the address bar. Then repeat.

How can I do this? Where do I start?
Please help!

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

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

发布评论

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

评论(1

自控 2024-10-29 09:51:23

我认为您实际上无法将 CtrlTab 发送到浏览器并将其解释为“切换选项卡命令”。如果可以的话,这将是一个安全漏洞。

但如果您想打开一个新选项卡,您可以轻松做到这一点。这是一个启动脚本:

// ==UserScript==
// @name            Tab Opener
// @namespace       http://stackoverflow.com/questions/5321507/
// @include         http://stackoverflow.com/*
// ==/UserScript==

GM_openInTab ("http://www.google.com/");

I don't think you can actually send CtrlTab to the browser and have it interpreted as a "switch tabs command". That would be a security hole if you could.

But if you want to open a new tab, you can do that easily. Here's a starter script:

// ==UserScript==
// @name            Tab Opener
// @namespace       http://stackoverflow.com/questions/5321507/
// @include         http://stackoverflow.com/*
// ==/UserScript==

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