Google Chrome 的 ActiveX / XPCOM 等效项
Google Chrome 有没有办法访问剪贴板(即获取和设置剪贴板的内容)? Internet Explorer 通过使用 ActiveX 来实现此目的,并且我通过 XPCOM 在 Firefox 中使其工作,我想知道是否有任何方法可以在 Chrome 中执行此操作?
我想要的是能够拦截 JavaScript 中的“粘贴”事件,并在将剪贴板的内容粘贴到网站的文本区域(在我的例子中是 RTE)之前对其进行预处理。
感谢您的帮助
Is there any way in Google Chrome to access the clipboard (i.e. get and set content of clipboard)? Internet Explorer allows for this by using ActiveX and I got it working in Firefox via XPCOM, I am wondering if there is any way to do this in Chrome?
What I want is to be able to intercept the "paste" events in JavaScript and pre-process the content of the clipboard before it's being pasted into the website's textarea (or RTE in my case).
Thanks for any help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
看看FireBreath;您可以使用它创建一个适用于所有浏览器的插件(既可以作为 NPAPI 插件,也可以作为 ActiveX 控件)
Look at FireBreath; you can use it to create a plugin that will work in all browsers (works both as a NPAPI plugin and an ActiveX control)
查看 NPAPI
Check out NPAPI
NPAPI 已被弃用。使用 WebAssembly。
NPAPI has been deprecated. Use WebAssembly.