我可以使用 Chromium 从本地网页打开可执行文件吗?
我正在创建一个项目来简化我的计算机。我使用的是 Windows 7,并且在 kiosk 模式下使用 Chromium Web 浏览器。
我希望能够从我的小信息亭打开一个程序,比如 iTunes 或 MS Word。 html 页面是本地的,与我已经拥有的所有其他内容一起位于我的文档中的一个文件夹中。 VBscript 将无法工作。
关于如何或是否有效的任何想法?
I am creating a project to simplify my computer. I have Windows 7, and I am using the Chromium web browser in kiosk mode.
I want to be able to open a program, lets say iTunes or MS Word, from my little kiosk. The html page is local, just sitting in a folder in my documents with all the other stuff I already have. VBscripts will not work.
Any ideas on how or if this will work?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
编写一个 npapi 插件,向 JavaScript 公开一个方法,该方法获取其参数并将它们传递给 Win32 ShellExecute 函数。您可以将该插件捆绑为 Chrome 扩展程序,并将其设置为仅在您的信息亭页面上启用该插件。
通过一些谷歌搜索,您可能能够找到以前编写过此类插件的人,或者您也可以编写自己的插件。
Write an npapi plugin which exposes a method to JavaScript which takes its arguments and passes them to the Win32 ShellExecute function. You can bundle the plugin as a Chrome Extension, and set it up to only enable the plugin on your kiosk page.
With a bit of googling, you'll probably be able to find someone who has written a plugin like this before, or you could write your own.