监听不同页面的击键

发布于 2024-11-11 14:08:28 字数 156 浏览 5 评论 0原文

我想开发一个在后台运行并监听击键并将它们作为字符串存储在变量中的扩展。例如,如果我在 Chrome 浏览器窗口中有 5 个选项卡,并且我在窗口的每个选项卡上按 a、b、c、d、e;最终的字符串应该是 abcde。

任何人都可以为此提供示例代码吗?

非常感谢您的帮助。

I want to develop an extension that runs in the background and listens to keystrokes and stores them as a string in a variable. For example, if I have 5 tabs in a chrome browser window and I press a,b,c,d,e on each tab of the window; the final string should be abcde.

Could any please provide a sample code for this?

Help will be greatly appreciated.

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

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

发布评论

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

评论(1

丢了幸福的猪 2024-11-18 14:08:28

您可以将这样的代码添加到内容脚本中:

var bodyElement = document.getElementsByTagName("body")[0];
bodyElement.addEventListener("keypress", function(e){
    console.log(e);
    console.log(String.fromCharCode(e.keyCode));
});

必须加载 body 元素才能使此代码正常工作,因此请使用 jQuery 的 $(document).ready() 或类似的,或者在扩展清单中设置脚本的 run_at 值到 document_end。

You could add code like this to a content script:

var bodyElement = document.getElementsByTagName("body")[0];
bodyElement.addEventListener("keypress", function(e){
    console.log(e);
    console.log(String.fromCharCode(e.keyCode));
});

The body element must be loaded for this code to work, so use jQuery's $(document).ready(), or similar, or in the extension manifest set the run_at value for the script to document_end.

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