Installation
From web stores
The extension is available on the Chrome Web Store and the Firefox Add-ons extension store. Click on your browser's badge below to install.
INFO
Schooltape is currently unavailable in the following web stores:
- Edge Add-ons
- Opera Add-ons
- Safari Extensions
From GitHub releases
Please follow the instructions for your browser:
From source
WARNING
Installing from source is not recommended for most users.
Clone the repository:
shcd path/to/where/you/want/schooltape/to/be git clone https://github.com/schooltape/schooltape.git cd schooltape
Install Bun
bashcurl -fsSL https://bun.sh/install | bash
bashcurl -fsSL https://bun.sh/install | bash
powershellpowershell -c "irm bun.sh/install.ps1 | iex"
Install dependencies
bashbun install
Build the extension
bashbun build
bashbun build:firefox
Load the extension:
For Chrome / Chromium-based:
- Open
chrome://extensions/
. - Enable Developer mode.
- Click on
Load unpacked
. - Select the
dist
directory in theschooltape
directory.
- Open
For Firefox:
- Open
about:debugging#/runtime/this-firefox
. - Click on
Load Temporary Add-on
. - Select the
manifest.json
file in thedist
directory in theschooltape
directory.
- Open
TIP
You can also use bun dev
or bun dev:firefox
to build the extension in development mode, which will automatically reload the extension when you make changes. More information can be found in the contributing guide.
WARNING
Loading a temporary add-on in Firefox will remove the extension when you close the browser.