Description
xBrowserSync is a free tool for syncing browser data between different browsers and devices, built for privacy and anonymity. For full details, see www.xbrowsersync.org.
This repository contains the source code for the REST service API that client applications communicate with. If you'd like to run your own xBrowserSync service on your Node.js web server, follow the installation steps below.
Once configured, you can begin syncing your browser data to your xBrowserSync service, and if you're feeling generous, allow others to sync their data to your service also!
xBrowserSync alternatives and similar software solutions
Based on the "Bookmarks & Link Sharing" category.
Alternatively, view xBrowserSync alternatives based on common mentions on social networks and blogs.
-
Pinry
Pinry, a tiling image board system for people who want to save, tag, and share images, videos and webpages in an easy to skim through format. It's open-source and self-hosted. -
Firefox Auth Server
DISCONTINUED. This project implements the core server-side API for Firefox Accounts. -
Firefox Content Server
DISCONTINUED. Static server that hosts Firefox Account sign up, sign in, email verification, etc. flows. -
Scuttle
Web-based social bookmarking system. Allows multiple users to store, share and tag their favourite links online. -
SemanticScuttle
DISCONTINUED. SemanticScuttle is a social bookmarking tool experimenting with features like structured tags and collaborative tag descriptions. -
dyu/bookmarks
a simple self-hosted bookmarking app that can import bookmarks from delicious and chrome -
golinks
đ A web app that allows you to create smart bookmarks, commands and aliases by pointing your web browser's default search engine at a running instance. Similar to bunny1 or yubnub.
CodeRabbit: AI Code Reviews for Developers

* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of xBrowserSync or a related project?
README
xBrowserSync
Desktop browser web extensions and Android app
xBrowserSync is a free tool for syncing browser data between different browsers and devices, built for privacy and anonymity. For full details, see www.xbrowsersync.org.
This repository contains the source code for the browser web extensions and Android mobile app used for syncing to an xBrowserSync service. You can get the official releases of the xBrowserSync clients from the various app stores, but if youâd like to build from source you can do so here.
Prerequisites
- NPM. Itâs bundled with Node.js so download and install it for your platform.
Installation
CD into the source directory and install the package and dependencies using NPM:
$ npm install
Android
You must follow the Cordova Android installation guide in order to develop xBrowserSync for Android. Once that's done, run the following commands in the xBrowserSync source directory:
$ npm install -g [email protected]
$ cd ./res/android
$ cordova prepare
Building
Run a debug build for the given platform:
$ npm run build:[platform]
or
$ npm run watch:[platform]
Replace [platform] with the name of the platform to build. The app code will be output to the 'build/[platform]' folder. Available platforms:
- android
- chromium
- firefox
Debugging in Chrome
Once you have built xBrowserSync for Chromium, browse to chrome://extensions
, enable Developer mode, click "Load unpacked" and browse to build/chromium
within the xBrowserSync source directory.
Note: We recommend creating a new Chrome profile for testing so you do not affect your actual profile data.
Debugging in Firefox
Use the web-ext tool for testing xBrowserSync in Firefox. Once that is installed and you have built xBrowserSync for Firefox, CD into build/firefox
within the xBrowserSync source directory and run the following command:
$ web-ext run --verbose
Firefox will open using a temporary profile and the xBrowserSync extension will be installed from the built source.
Debugging in Android
After building, in order to run the app you'll need to execute the relevant cordova cli commands. For example, to run the app on a connected device, CD into build/android
within the xBrowserSync source directory and run the following commands:
$ cordova build android
$ cordova run android --device
Make sure to run the cordova build
command at least once after running a fresh build so that required gradle files are copied (cordova run
alone does not copy these files).
Packaging
Run a release build and then package for the given platform:
$ npm run package:[platform]
Replace [platform] with the name of the platform to build. The package will be output to the 'dist' folder.
Issues
If youâve found a bug or wish to request a new feature, please submit it here.
Translation
If you would like to help with translating xBrowserSync into another language, please read the Translations wiki page to get started.
*Note that all licence references and agreements mentioned in the xBrowserSync README section above
are relevant to that project's source code only.