是否可以创建一个浏览器扩展来允许传入请求?
我正在寻找一种向浏览器发出传入请求的方法。在浏览器中安装扩展就可以了。这样做的目的是允许另一台机器连接到扩展来控制游戏,而无需中间服务器。
这可行吗?是否可以让 Chrome 或 Firefox 扩展打开端口以允许传入请求?
I am looking to figure out a way to make incoming request to a browser. Installing an extension in the browser is OK. The goal of this is to allow another machine to connect to the extension to control a game without needing an intermediary server.
Is this feasible? Is it possible to make a Chrome or Firefox extension open a port to allow for incoming request?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您要求的是服务器套接字。对于 Chrome 来说,答案是“不”,Chrome 扩展程序只能打开客户端连接。另一方面,Firefox 扩展可以使用
nsIServerSocket
接口 进行监听用于端口上传入的 TCP 连接。如果您使用附加 SDK,您将需要使用chrome
包。像这样的事情:What you are asking for are server sockets. For Chrome the answer is "no", Chrome extensions can only open client connections. Firefox extensions on the other hand can use
nsIServerSocket
interface to listen for incoming TCP connections on a port. If you use the Add-on SDK you would need to use thechrome
package. Something like this: