监听不同页面的击键
我想开发一个在后台运行并监听击键并将它们作为字符串存储在变量中的扩展。例如,如果我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将这样的代码添加到内容脚本中:
必须加载 body 元素才能使此代码正常工作,因此请使用 jQuery 的 $(document).ready() 或类似的,或者在扩展清单中设置脚本的 run_at 值到 document_end。
You could add code like this to a content script:
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.