diff --git a/apps/server/src/assets/doc_notes/en/User Guide/User Guide/Installation & Setup/Web Clipper.html b/apps/server/src/assets/doc_notes/en/User Guide/User Guide/Installation & Setup/Web Clipper.html
index effb6e395b..77eb7dea73 100644
--- a/apps/server/src/assets/doc_notes/en/User Guide/User Guide/Installation & Setup/Web Clipper.html
+++ b/apps/server/src/assets/doc_notes/en/User Guide/User Guide/Installation & Setup/Web Clipper.html
@@ -7,13 +7,9 @@
Supported browsers
Trilium Web Clipper officially supports the following web browsers:
-
- Mozilla Firefox, using Manifest v2.
-
-
- Google Chrome, using Manifest v3. Theoretically the extension should work
- on other Chromium-based browsers as well, but they are not officially supported.
-
+ Mozilla Firefox, using Manifest v2.
+ Google Chrome, using Manifest v3. Theoretically the extension should work
+ on other Chromium-based browsers as well, but they are not officially supported.
Obtaining the extension
@@ -68,5 +64,73 @@
It's also possible to configure the server address
if you don't run the desktop application, or want it to work without the
desktop application running.
+Testing development versions
+Development versions are version pre-release versions, generally meant
+ for testing purposes. These are not available in the Google or Firefox
+ web stores, but can be downloaded from either:
+
+
+ GitHub Releases by
+ looking for releases starting with Web Clipper.
+
+
+
+ Artifacts in GitHub Actions, by looking for the Deploy web clipper extension workflow .
+ Once a workflow run is selected, the ZIP files are available in the Artifacts section,
+ under the name web-clipper-extension.
+
+
+For Chrome
+
+
+ Download trilium-web-clipper-[x.y.z]-chrome.zip.
+
+
+ Extract the archive.
+
+
+ In Chrome, navigate to chrome://extensions/
+
+
+
+ Toggle Developer Mode in top-right of the page.
+
+
+ Press the Load unpacked button near the header.
+
+
+ Point to the extracted directory from step (2).
+
+
+For Firefox
+
+ Firefox prevents installation of unsigned packages in the “retail” version.
+ To be able to install extensions from disk, consider using Firefox Developer Edition or
+ a non-branded version of Firefox (e.g. GNU IceCat ).
+ One time, go to about:config and change
+ xpinstall.signatures.requiredto false.
+
+
+
+ Navigate to about:addons.
+
+
+ Select Extensions in the left-side navigation.
+
+
+ Press the Gear icon on the right of the Manage Your Extensions title.
+
+
+ Select Install Add-on From File…
+
+
+
+ Point it to trilium-web-clipper-[x.y.z]-firefox.zip.
+
+
+ Press the Add button to confirm.
+
+
Credits
Some parts of the code are based on the Joplin Notes browser extension .
\ No newline at end of file
diff --git a/docs/Developer Guide/Developer Guide/Documentation.md b/docs/Developer Guide/Developer Guide/Documentation.md
index d840ffd46a..505fe22c9b 100644
--- a/docs/Developer Guide/Developer Guide/Documentation.md
+++ b/docs/Developer Guide/Developer Guide/Documentation.md
@@ -1,5 +1,5 @@
# Documentation
-There are multiple types of documentation for Trilium:
+There are multiple types of documentation for Trilium:
* The _User Guide_ represents the user-facing documentation. This documentation can be browsed by users directly from within Trilium, by pressing F1 .
* The _Developer's Guide_ represents a set of Markdown documents that present the internals of Trilium, for developers.
diff --git a/docs/User Guide/User Guide/Installation & Setup/Web Clipper.md b/docs/User Guide/User Guide/Installation & Setup/Web Clipper.md
index a74fb72d05..d054ba5247 100644
--- a/docs/User Guide/User Guide/Installation & Setup/Web Clipper.md
+++ b/docs/User Guide/User Guide/Installation & Setup/Web Clipper.md
@@ -55,6 +55,36 @@ The extension needs to connect to a running Trilium instance. By default, it sca
It's also possible to configure the [server](Server%20Installation.md) address if you don't run the desktop application, or want it to work without the desktop application running.
+## Testing development versions
+
+Development versions are version pre-release versions, generally meant for testing purposes. These are not available in the Google or Firefox web stores, but can be downloaded from either:
+
+* [GitHub Releases](https://github.com/TriliumNext/Trilium/releases) by looking for releases starting with _Web Clipper._
+* Artifacts in GitHub Actions, by looking for the [_Deploy web clipper extension_ workflow](https://github.com/TriliumNext/Trilium/actions/workflows/web-clipper.yml). Once a workflow run is selected, the ZIP files are available in the _Artifacts_ section, under the name `web-clipper-extension`.
+
+### For Chrome
+
+1. Download `trilium-web-clipper-[x.y.z]-chrome.zip`.
+2. Extract the archive.
+3. In Chrome, navigate to `chrome://extensions/`
+4. Toggle _Developer Mode_ in top-right of the page.
+5. Press the _Load unpacked_ button near the header.
+6. Point to the extracted directory from step (2).
+
+### For Firefox
+
+> [!WARNING]
+> Firefox prevents installation of unsigned packages in the “retail” version. To be able to install extensions from disk, consider using _Firefox Developer Edition_ or a non-branded version of Firefox (e.g. _GNU IceCat_).
+>
+> One time, go to `about:config` and change `xpinstall.signatures.required` to `false`.
+
+1. Navigate to `about:addons`.
+2. Select _Extensions_ in the left-side navigation.
+3. Press the _Gear_ icon on the right of the _Manage Your Extensions_ title.
+4. Select _Install Add-on From File…_
+5. Point it to `trilium-web-clipper-[x.y.z]-firefox.zip`.
+6. Press the _Add_ button to confirm.
+
## Credits
Some parts of the code are based on the [Joplin Notes browser extension](https://github.com/laurent22/joplin/tree/master/Clipper).
\ No newline at end of file