https://github.com/iann0036/tabd-native-host
The browser helper / native host for Tab'd
https://github.com/iann0036/tabd-native-host
Last synced: about 2 months ago
JSON representation
The browser helper / native host for Tab'd
- Host: GitHub
- URL: https://github.com/iann0036/tabd-native-host
- Owner: iann0036
- License: agpl-3.0
- Created: 2025-07-31T00:03:14.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2025-08-04T11:19:53.000Z (2 months ago)
- Last Synced: 2025-08-19T00:53:58.538Z (about 2 months ago)
- Language: Go
- Homepage:
- Size: 25.4 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Tab'd Native Host
A Go-based native messaging host for the [Tab'd browser extension](https://github.com/iann0036/tabd-extension). This program receives clipboard data from the browser extension and saves it to files in the user's home directory to be picked up by the [IDE extension](https://github.com/iann0036/tabd).
## Installation
Pre-build binaries are packaged with the IDE extension, and can be installed by running the `Tab'd: Install browser helper` command from the Command Palette in your IDE. However, if you want to build it yourself or install it manually, follow the instructions below.
### Quick Install (Recommended)
```bash
# Build and install in one step
./install.sh
```### Manual Install
```bash
# Build the binary
./build.sh# Install manually
sudo cp tabd-native-host /usr/local/bin/
chmod +x /usr/local/bin/tabd-native-host# Install manifest files (see install.sh for details)
```### Cross-Platform Build
```bash
# Build for all platforms
./build.sh all
```