可以在浏览器插件中使用 Win32 GUI 吗?
当然,这意味着您的插件不是跨平台的,但让我们关注技术方面......
浏览器插件(如在 NPAPI 中完成的)是否受到其功能的限制?或者您是否可以相当自由地访问 PC 和您所获得的渲染窗口?例如,您可以通过这种方式在浏览器中创建 Win32/MFC 控件吗?
一个附带问题 - 您的浏览器插件在概念上是否类似于 .DLL,因此它只是实现浏览器控制/通信的特定接口的任意编译代码?
Of course it would mean you're plugin is not cross-platform but let's focus on the technical side...
Is a browser plugin (like done in NPAPI) restricted in what it can do? Or do you get fairly free reign to access the PC and the render-window you're given? For instance can you create Win32/MFC controls in your browser this way?
A side question - is your browser plugin conceptually akin to a .DLL, which is therefore just arbitrary compiled code implementing a specific interface for browser control/communication?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
NPAPI 插件有两种类型:窗口插件和无窗口插件。它们都有一些优点和缺点(请参阅此链接< /a>)。当您在 Win32 上处理窗口插件时,您将获得浏览器插件窗口的 HWND,并且您可以像使用操作系统中的任何窗口一样使用它。
There are 2 types of NPAPI plugins: windowed and windowless plugins. Both of them has some advantages and disadvantages (see this link). When you deal with windowed plugin on Win32 you get HWND of browser plugin window and you can work with it like with any window in OS.