有没有办法将 sock.io 实现到 chrome 扩展中?

发布于 2025-01-11 10:40:02 字数 591 浏览 0 评论 0原文

我一直在尝试使用socket.io作为chrome扩展来实现多用户性,但是socket.io需要内联HTML脚本,而chrome扩展则不需要。无论如何,是否有可能让它发挥作用。

EX:

<script src="/socket.io/socket.io.js"></script>
<script>
  var socket = io();

  var form = document.getElementById('form');
  var input = document.getElementById('input');

  form.addEventListener('submit', function(e) {
    e.preventDefault();
    if (input.value) {
      socket.emit('chat message', input.value);
      input.value = '';
    }
  });
</script>    

我如何在不需要内联 HTML 的情况下使用它。除了不使用 require 之外,因为它无法在 chrome 扩展中导入。

I've been trying to use socket.io for a chrome extension to implement multi userability but socket.io requires inline HTML scrips which chrome extensions don't take. Is there anyway to potentially get that to work.

EX:

<script src="/socket.io/socket.io.js"></script>
<script>
  var socket = io();

  var form = document.getElementById('form');
  var input = document.getElementById('input');

  form.addEventListener('submit', function(e) {
    e.preventDefault();
    if (input.value) {
      socket.emit('chat message', input.value);
      input.value = '';
    }
  });
</script>    

How could I use this without needing inline HTML. Along with not using require as that doesn't work to import in a chrome extension.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文