Skip to content

kuba2k2/firefox-webserial

Repository files navigation

WebSerial for Firefox

WebSerial API Polyfill for Mozilla Firefox browser

Introduction

This add-on allows to use the WebSerial API in Firefox.

It uses a native application to communicate with serial ports.

NOTE: Currently, the add-on only works on Windows and Linux (x86-64).

Installation

The add-on is available for download from Mozilla Addons: WebSerial for Firefox.

The native application needs to be installed on the computer first. The GUI will offer to download the native application when you first try to open a serial port.

Installation on Windows

The .exe file is an installer - just open it and install the native application.

Installation on Linux

  1. Put the downloaded file in ~/.mozilla/native-messaging-hosts
  2. Rename it to just firefox-webserial.
  3. Make it executable: chmod +x ~/.mozilla/native-messaging-hosts/firefox-webserial.
  4. Create a file named io.github.kuba2k2.webserial.json in the same directory, with this content:
    {
    	"name": "io.github.kuba2k2.webserial",
    	"description": "WebSerial for Firefox",
    	"path": "/home/USER/.mozilla/native-messaging-hosts/firefox-webserial",
    	"type": "stdio",
    	"allowed_extensions": ["[email protected]"]
    }
    Adjust /home/USER to match your username.
  5. Restart the browser and use the extension.

NOTE: On Alpine Linux (or other musl-based distros) you will need to have gcompat installed.

Usage

Some applications that can work on Firefox with this add-on:

Debugging

To view logs produced by the extension for debugging purposes:

  • Open about:debugging, click This Firefox
  • Find WebSerial for Firefox, click Inspect
  • Type in the console: window.wsdebug = true
  • Go to a website of choice, try connecting to a serial port - the console should show extension logs.

License

MIT License

Copyright (c) 2023 Kuba Szczodrzyński

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.