Anime Watch Parties is a cross-platform extension that synchronizes videos on major anime websites. This extension allows you to enjoy your favorite anime on Crunchyroll, Funimation, Wakanim or ADN with your friends.
- Firefox: Download the xpi release, go to
about:debugging#/runtime/this-firefox
, click onLoad Temporay Add-on...
and select the xpi file. - Chromium: Download the crx release, go to
chrome://extensions
, enable debugging, drag and drop the crx file. - Chrome: Download the crx release, go to
chrome://extensions
, enable debugging, drag and drop the crx file.
The master branch generate the firefox extension, the chrome branch generate the chrome and chromium extension.
This project uses Node.js. You have to install it before continuing:
- Linux:
- go to https://nodejs.org/en/download/package-manager/ and follow instructions to download
Node.js v16.x
.
- go to https://nodejs.org/en/download/package-manager/ and follow instructions to download
- Windows:
- go to https://nodejs.org/en/download/current/ to download the Windows Installer.
To install all the depedencies, use the command npm install
:
$ npm install
Compile the extension:
$ npm run build-extension
Finaly load the extension in your browser:
- Firefox: Go to
about:debugging#/runtime/this-firefox
, click onLoad Temporay Add-on...
and select themanifest.json
file inbuilt/Firefox/
. - Chromium: Go to
chrome://extensions
, enable debugging, click onLoad Unpacked
and select thebuilt/Chrome/
directory. - Chrome: Go to
chrome://extensions
, enable debugging, click onLoad Unpacked
and select thebuilt/Chrome/
directory.
The master branch generate the firefox extension, the chrome branch generate the chrome and chromium extension.
This project uses Node.js and Redis. You have to install them before continuing:
- Linux:
- go to https://nodejs.org/en/download/package-manager/ and follow instructions to download
Node.js v16.x
. - install
docker
anddocker-compose
then rundocker-compose up -d
to start theRedis server
- go to https://nodejs.org/en/download/package-manager/ and follow instructions to download
To install all the depedencies, use the command npm install
:
$ npm install
First things to do:
- copy the file
.env.example
to.env
- modify the url in
src/background-scripts/clientScript.ts
fromhttps://animewatchparties.com
tohttps://localhost:4000
- run
npm run cert
to create a self-signed certificate (the server uses https) and you have to allow it: https://localhost:4000.
Compile the extension:
$ npm run build-extension
Then start the server:
$ npm run debug
Finaly load the extension in your browser:
- Firefox: Go to
about:debugging#/runtime/this-firefox
, click onLoad Temporay Add-on...
and select themanifest.json
file inbuilt/Firefox/
. - Chromium: Go to
chrome://extensions
, enable debugging, click onLoad Unpacked
and select thebuilt/Chrome/
directory. - Chrome: Go to
chrome://extensions
, enable debugging, click onLoad Unpacked
and select thebuilt/Chrome/
directory.
This project is a continuation of Wakanim With Friends.
Roll Together is a similar project.