mirror of
https://github.com/stashapp/Stash-Docs.git
synced 2025-12-10 00:41:30 -06:00
Update plugin documentation and external links to forum
This commit is contained in:
parent
bb4c58da2e
commit
278d7c4283
@ -25,7 +25,7 @@ The stash Docker container ships with everything you need to automatically run s
|
||||
|
||||
### Docker Compose
|
||||
|
||||
[https://github.com/stashapp/stash/blob/master/docker/production/docker-compose.yml](https://github.com/stashapp/stash/blob/master/docker/production/docker-compose.yml)
|
||||
[https://github.com/stashapp/stash/blob/master/docker/production/docker-compose.yml](https://github.com/stashapp/stash/blob/master/docker/production/docker-compose.yml){:target="_blank"}
|
||||
|
||||
```yaml
|
||||
# APPNICENAME=Stash
|
||||
@ -75,7 +75,7 @@ services:
|
||||
|
||||
### Dockerfile (x86_64)
|
||||
|
||||
[https://github.com/stashapp/stash/blob/master/docker/build/x86_64/Dockerfile](https://github.com/stashapp/stash/blob/master/docker/build/x86_64/Dockerfile)
|
||||
[https://github.com/stashapp/stash/blob/master/docker/build/x86_64/Dockerfile](https://github.com/stashapp/stash/blob/master/docker/build/x86_64/Dockerfile){:target="_blank"}
|
||||
|
||||
```dockerfile
|
||||
# This dockerfile should be built with `make docker-build` from the stash root.
|
||||
@ -124,7 +124,7 @@ ENTRYPOINT ["stash"]
|
||||
|
||||
### Dockerfile-CUDA (x86_64)
|
||||
|
||||
[https://github.com/stashapp/stash/blob/master/docker/build/x86_64/Dockerfile-CUDA](https://github.com/stashapp/stash/blob/master/docker/build/x86_64/Dockerfile-CUDA)
|
||||
[https://github.com/stashapp/stash/blob/master/docker/build/x86_64/Dockerfile-CUDA](https://github.com/stashapp/stash/blob/master/docker/build/x86_64/Dockerfile-CUDA){:target="_blank"}
|
||||
|
||||
#### Notable changes
|
||||
|
||||
@ -199,7 +199,7 @@ ENTRYPOINT ["docker-entrypoint.sh", "stash"]
|
||||
|
||||
## Community images
|
||||
|
||||
!!! important "Disclaimer"
|
||||
!!! info "Disclaimer"
|
||||
The images are not managed by stashapp team.
|
||||
|
||||
### feederbox826
|
||||
|
||||
@ -3,7 +3,7 @@ title: Unraid
|
||||
icon: simple/unraid
|
||||
---
|
||||
|
||||
!!! important "Disclaimer"
|
||||
!!! info "Disclaimer"
|
||||
None of the Unraid community apps are not managed by stashapp team.
|
||||
|
||||
## Stash by CorneliousJD
|
||||
|
||||
@ -42,7 +42,7 @@ icon: fontawesome/brands/windows
|
||||
|
||||
## Install via Scoop
|
||||
|
||||
!!! important "Disclaimer"
|
||||
!!! info "Disclaimer"
|
||||
The package is not managed by stashapp team.
|
||||
|
||||
[Scoop](https://scoop.sh/){:target="_blank"} is command-line package manager for Windows.
|
||||
|
||||
14
docs/other-projects/index.md
Normal file
14
docs/other-projects/index.md
Normal file
@ -0,0 +1,14 @@
|
||||
---
|
||||
title: Other projects
|
||||
---
|
||||
|
||||
!!! info "Disclaimer"
|
||||
Community projects are created and maintained by the community and are not associated with the stashapp team.
|
||||
|
||||
Other projects are tools, extensions, and add‑ons created by members of the community that extend, integrate with, or automate parts of Stash or stsah-box.
|
||||
|
||||
If you need help, follow the project's own support instructions or contact the original creator.
|
||||
|
||||
## Project sources
|
||||
|
||||
- [Community project index](https://discourse.stashapp.cc/c/plugins/other-projects/15){:target="_blank"}
|
||||
@ -2,10 +2,10 @@
|
||||
title: Plugins
|
||||
---
|
||||
|
||||
!!! info
|
||||
Plugins are created by third parties and not officially affiliated or supported by the core Stash team. If you have issues, please reach out to the original creators.
|
||||
!!! info "Disclaimer"
|
||||
Plugins are created and maintained by the community and are not associated with the stashapp team.
|
||||
|
||||
Plugins adds further features that Stash doesn't itself provide.
|
||||
Plugins add features that Stash does not provide by default.
|
||||
|
||||
## Managing plugins
|
||||
|
||||
@ -17,12 +17,23 @@ Installed plugins can be updated or uninstalled from the **Installed Plugins** s
|
||||
|
||||
### Adding sources
|
||||
|
||||
Anyone can create their own source index for plugins. To add a new source go to :fontawesome-solid-gear: **Settings** > **Plugins** page and under **Available Plugins** click **Add Source**.
|
||||
To add a new source go to :fontawesome-solid-gear: **Settings** > **Plugins** page and under **Available Plugins** click **Add Source**.
|
||||
|
||||
### Installing plugins manually
|
||||
## Installing plugins manually
|
||||
|
||||
By default, Stash looks for plugin configurations in the plugins sub-directory of the directory where the stash `config.yml` is read. This will either be the `%USERPROFILE%\.stash\plugins` on Windows or `/root/.stash/plugins` on Unix systems (Mac, Linux, etc.) or the current working directory.
|
||||
By default Stash reads plugin configuration files from the `plugins` sub-directory located where the stash `config.yml` is read. Typical locations:
|
||||
|
||||
Plugins are added by adding configuration yaml files (format: `pluginName.yml`) to the `plugins` directory.
|
||||
- Windows: `%USERPROFILE%\.stash\plugins`
|
||||
- Unix: `/root/.stash/plugins`
|
||||
- Or: current working directory (cwd)
|
||||
|
||||
Loaded plugins can be viewed in the :fontawesome-solid-gear: **Settings** > **Plugins** page. After plugins are added, removed or edited while Stash is running, they can be reloaded by clicking :fontawesome-solid-rotate: **Reload plugins** button.
|
||||
Plugins are added by adding configuration YAML files (format: `pluginName.yml`) to the `plugins` directory.
|
||||
|
||||
Loaded plugins can be viewed in the :fontawesome-solid-gear: **Settings** > **Plugins** page. After plugins are added, removed or edited while Stash is running, they can be reloaded by clicking :fontawesome-solid-rotate: **Reload plugins** button.
|
||||
|
||||
## Plugin sources
|
||||
|
||||
Stash comes preconfigured with [stashapp/CommunityScripts](https://github.com/stashapp/CommunityScripts){:target="_blank"} source maintained by stashapp community.
|
||||
|
||||
- [List of known plugin sources](https://discourse.stashapp.cc/t/list-of-plugin-sources/122){:target="_blank"}
|
||||
- [Community plugin index](https://discourse.stashapp.cc/c/plugins/18){:target="_blank"}
|
||||
3932
docs/plugins/list.md
3932
docs/plugins/list.md
File diff suppressed because it is too large
Load Diff
@ -1,10 +0,0 @@
|
||||
---
|
||||
title: Scripts
|
||||
---
|
||||
|
||||
!!! info
|
||||
Scripts are created by third parties and not officially affiliated or supported by the core Stash team. If you have issues, please reach out to the original creators.
|
||||
|
||||
Scripts are standalone programs that can interact with Stash either through GraphQL queries, custom Javascript or by directly editing Stash database or external files.
|
||||
|
||||
To install a script follow the script's install instructions.
|
||||
@ -1,206 +0,0 @@
|
||||
---
|
||||
title: Browse scripts
|
||||
---
|
||||
|
||||
??? tip "stash-git-index"
|
||||
Exhaustive list of git repositories related to Stash [Google Sheets document](https://docs.google.com/spreadsheets/d/1yudaRDo_3ZOVivviffvQiSGU_gNpgkG4kIYrJP6DHP4/edit?usp=sharing).
|
||||
|
||||
??? tip "Script no longer works"
|
||||
If you found that script is no longer working you can try contacting the author directly or create an issue on their Git platform. You can also create a GitHub issue on [Stash-Docs](https://github.com/stashapp/Stash-Docs){target=_blank} for it to be removed from the list.
|
||||
|
||||
### [AddMarkerOnO](https://github.com/rosa-umineko/CommunityScripts/blob/main/scripts/AddMarkerOnO.js){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
Will auto-generate a marker when the SceneAddO event is trigger
|
||||
|
||||
=== "Author"
|
||||
|
||||
[rosa-umineko](https://github.com/rosa-umineko){target=_blank}
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
### [blurryCardBackground](https://github.com/philpw99/StashCustomJavascripts/blob/main/blurryCardBackground.js){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
Add blurry background to scene/movie/gallery/image/studio.
|
||||
|
||||
=== "Author"
|
||||
|
||||
[philpw99](https://github.com/philpw99){target=_blank}
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||

|
||||
|
||||
### [FilenamePerformersToCSV](https://github.com/ALonelyJuicebox/FilenamePerformersToCSV){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
Parse performer names from your media filenames into CSV files for batch import into Stash!
|
||||
|
||||
=== "Author"
|
||||
|
||||
[ALonelyJuicebox](https://github.com/ALonelyJuicebox){target=_blank}
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||

|
||||
|
||||
### [Get-ProfilePictures](https://github.com/MinasukiHikimuna/MidnightRider-Stash/blob/main/scripts/Get-ProfilePictures.ps1){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
Get-ProfilePictures
|
||||
|
||||
=== "Author"
|
||||
|
||||
[MinasukiHikimuna](https://github.com/MinasukiHikimuna){target=_blank}
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
### [Kodi helper](https://github.com/stashapp/CommunityScripts/tree/main/scripts/kodi-helper){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
Generates nfo and strm for use with Kodi.
|
||||
|
||||
=== "Author"
|
||||
|
||||
[WithoutPants](https://github.com/WithoutPants){target=_blank}
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
### [OFMetadataToStash](https://github.com/ALonelyJuicebox/OFMetadataToStash){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
OnlyFans metadata import tool for Stash, written in Powershell.
|
||||
|
||||
- Simple to use with a straightforward command line based UI!
|
||||
- Script can auto-associate scenes/images with the appropriate OnlyFans performer(s) and studio, in batch!
|
||||
- Built-in utility for completely scrubbing and sanitizing OnlyFans metadata databases
|
||||
|
||||
=== "Author"
|
||||
|
||||
[ALonelyJuicebox](https://github.com/ALonelyJuicebox){target=_blank}
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||

|
||||

|
||||
|
||||
### [plex-to-stash-ratings](https://github.com/oikmeg/plex-to-stash-ratings){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
Transfer scene rating and view count from Plex to Stash.
|
||||
|
||||
=== "Author"
|
||||
|
||||
[oikmeg](https://github.com/oikmeg){target=_blank}
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
### [pwPlayer.js - Scene Card Quick Player](https://github.com/philpw99/StashCustomJavascripts/blob/main/pwPlayer.js){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
This Javascript will create a "Play" button in each scene card. You can click on it and the video for that scene will be played right away. Click on the video again, then you are back to the scene list.
|
||||
|
||||
=== "Author"
|
||||
|
||||
[philpw99](https://github.com/philpw99){target=_blank}
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||

|
||||
|
||||
### [SQLITE Renamer for Stash](https://github.com/stashapp/CommunityScripts/tree/main/scripts/Sqlite_Renamer){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
Using metadata from your database (SQLITE) to rename your file.
|
||||
|
||||
=== "Author"
|
||||
|
||||
[Belleyy](https://github.com/Belleyy){target=_blank}
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
### [Stash Watcher](https://github.com/stashapp/CommunityScripts/tree/main/scripts/stash-watcher){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
Stash Watcher is a service that watches your Stash library directories for changes and then triggers a Metadata Scan when new files are added to those directories. It then waits a period of time before triggering another scan to keep Stash from constantly scanning if you're making many changes. Note that updates are watched during that window; the update is merely delayed.
|
||||
|
||||
=== "Author"
|
||||
|
||||
[DuctTape42](https://github.com/DuctTape42){target=_blank}
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
### [stashapp-tag-importer](https://github.com/soundchaser128/stashapp-tag-importer){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
Creates tags and aliases, resolves tag conflicts, and updates tag titles and descriptions from Stashbox (StashDB) to your local Stash instance. It can be run periodically to perform a one way sync to keep your Stash instance up to date with Stashbox (StashDB).
|
||||
|
||||
=== "Author"
|
||||
|
||||
[soundchaser128](https://github.com/soundchaser128){target=_blank}
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
### [StashGalleryUpdate](https://github.com/Darklyter/StashGalleryUpdate){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
Dumb little script to match and update Stash galleries from scenes
|
||||
|
||||
=== "Author"
|
||||
|
||||
[Darklyter](https://github.com/Darklyter){target=_blank}
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
### [StashStudioSync](https://github.com/Stash-KennyG/StashStudioSync){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
An easy way to query a stashbox GQL endpoint and import any unknown studio IDs.
|
||||
|
||||
=== "Author"
|
||||
|
||||
[Stash-KennyG](https://github.com/Stash-KennyG){target=_blank}
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
### [StashTagSkins](https://github.com/Stash-KennyG/StashTagSkins){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
Used to quickly apply and change themes of tags for Stash.
|
||||
|
||||
=== "Author"
|
||||
|
||||
[Stash-KennyG](https://github.com/Stash-KennyG){target=_blank}
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
### [StashVideohasherNode](https://github.com/Darklyter/StashVideohasherNode){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
This is a very simple script that can be run on multiple systems to process a large Stash import of scenes. Instead of running cover and phash generation tasks on the Stash server itself, this script will allow you to do the same thing on as many computers as you would like, with all of the nodes contributing back to the Stash server.
|
||||
|
||||
=== "Author"
|
||||
|
||||
[Darklyter](https://github.com/Darklyter){target=_blank}
|
||||
|
||||
=== "Screenshots"
|
||||
1290
docs/themes/custom-css-snippets.md
vendored
1290
docs/themes/custom-css-snippets.md
vendored
File diff suppressed because it is too large
Load Diff
37
docs/themes/index.md
vendored
37
docs/themes/index.md
vendored
@ -2,24 +2,36 @@
|
||||
title: Themes
|
||||
---
|
||||
|
||||
!!! info
|
||||
Themes are created by third parties and not officially affiliated or supported by the core Stash team. If you have issues, please reach out to the original creators.
|
||||
!!! info "Disclaimer"
|
||||
Plugins are created and maintained by the community and are not associated with the stashapp team.
|
||||
|
||||
Stash supports CSS themes to adjust the look-and-feel of the interface. There are several that have been created by the maintainers and users.
|
||||
Stash supports CSS themes to adjust the look-and-feel of the interface.
|
||||
|
||||
Themes can be installed either via plugin or as Custom CSS.
|
||||
|
||||
## Installing via plugin
|
||||
## Managing themes
|
||||
|
||||
Plugins can be installed and managed from the :fontawesome-solid-gear: **Settings** > **Plugins** page.
|
||||
Themes can be installed and managed from the :fontawesome-solid-gear: **Settings** > **Plugins** page.
|
||||
|
||||
Plugins are installed using the **Available Plugins** section. The **Community (stable)** source is configured by default that has several themes.
|
||||
Themes are installed using the **Available Plugins** section. The **Community (stable)** source is configured by default.
|
||||
|
||||
Installed plugins can be updated or uninstalled from the **Installed Plugins** section.
|
||||
Installed themes can be updated or uninstalled from the **Installed Plugins** section.
|
||||
|
||||
### Adding sources
|
||||
|
||||
Anyone can create their own source index for plugins. To add a new source go to :fontawesome-solid-gear: **Settings** > **Plugins** page and under **Available Plugins** click **Add Source**.
|
||||
To add a new source go to :fontawesome-solid-gear: **Settings** > **Plugins** page and under **Available Plugins** click **Add Source**.
|
||||
|
||||
## Installing themes manually
|
||||
|
||||
By default Stash reads plugin configuration files from the `plugins` sub-directory located where the stash `config.yml` is read. Typical locations:
|
||||
|
||||
- Windows: `%USERPROFILE%\.stash\plugins`
|
||||
- Unix: `/root/.stash/plugins`
|
||||
- Or: current working directory (cwd)
|
||||
|
||||
Themes are added by adding configuration YAML files (format: `pluginName.yml`) to the `plugins` directory.
|
||||
|
||||
Loaded themes can be viewed in the :fontawesome-solid-gear: **Settings** > **Plugins** page. After themes are added, removed or edited while Stash is running, they can be reloaded by clicking :fontawesome-solid-rotate: **Reload plugins** button.
|
||||
|
||||
## Installing via Custom CSS
|
||||
|
||||
@ -27,4 +39,11 @@ Anyone can create their own source index for plugins. To add a new source go to
|
||||
1. In Stash, go to :fontawesome-solid-gear: **Settings** > **Interface** and scroll down to Custom CSS heading.
|
||||
1. Make sure **Custom CSS enabled** is checked.
|
||||
1. Click on **Edit** under **Custom CSS** and then paste the CSS code into the text box.
|
||||
1. You will need to force-reload ++shift+f5++ in order to see the theme.
|
||||
1. You will need to force-reload ++shift+f5++ in order to see the theme.
|
||||
|
||||
## Theme sources
|
||||
|
||||
Stash comes preconfigured with [stashapp/CommunityScripts](https://github.com/stashapp/CommunityScripts){:target="_blank"} source maintained by stashapp community.
|
||||
|
||||
- [List of known plugin sources](https://discourse.stashapp.cc/t/list-of-plugin-sources/122){:target="_blank"}
|
||||
- [Community theme index](https://discourse.stashapp.cc/tags/c/plugins/18/none/theme){:target="_blank"}
|
||||
817
docs/themes/list.md
vendored
817
docs/themes/list.md
vendored
@ -1,817 +0,0 @@
|
||||
# Browse themes
|
||||
|
||||
|
||||
## Sources
|
||||
|
||||
1. [https://feederbox826.github.io/themes/main/index.yml](https://feederbox826.github.io/themes/main/index.yml)
|
||||
1. [https://serechops.github.io/Serechops-Stash/index.yml](https://serechops.github.io/Serechops-Stash/index.yml)
|
||||
1. [https://stashapp.github.io/CommunityScripts/stable/index.yml](https://stashapp.github.io/CommunityScripts/stable/index.yml)
|
||||
1. [https://tetrax-10.github.io/stash-stuffs/index.yml](https://tetrax-10.github.io/stash-stuffs/index.yml)
|
||||
1. [https://uncertainmongoose.github.io/dracula-for-stash/index.yml](https://uncertainmongoose.github.io/dracula-for-stash/index.yml)
|
||||
## All themes
|
||||
|
||||
|
||||
### [alternative-tag-layout](https://github.com/feederbox826/themes/tree/main/themes/alternative-tag-layout){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
Changes the tags layout to show more images, and details on hover
|
||||
|
||||
=== "Source URL"
|
||||
|
||||
```
|
||||
https://feederbox826.github.io/themes/main/index.yml
|
||||
```
|
||||
|
||||
=== "README"
|
||||
|
||||
View [README](https://github.com/feederbox826/themes/blob/main/themes/alternative-tag-layout/README.md){target=_blank}
|
||||
|
||||
=== "Author"
|
||||
|
||||
[feederbox826](https://github.com/feederbox826)
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
|
||||
### [direct-stream](https://github.com/feederbox826/themes/tree/main/themes/direct-stream){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
Adds styling to settings to indicate direct stream
|
||||
|
||||
=== "Source URL"
|
||||
|
||||
```
|
||||
https://feederbox826.github.io/themes/main/index.yml
|
||||
```
|
||||
|
||||
=== "README"
|
||||
|
||||
View [README](https://github.com/feederbox826/themes/blob/main/themes/direct-stream/README.md){target=_blank}
|
||||
|
||||
=== "Author"
|
||||
|
||||
[feederbox826](https://github.com/feederbox826)
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
|
||||
### [Dracula Theme](https://github.com/uncertainmongoose/dracula-for-stash/tree/main/themes/dracula){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
A dark theme for Stash based on the popular Dracula theme.
|
||||
|
||||
=== "Source URL"
|
||||
|
||||
```
|
||||
https://uncertainmongoose.github.io/dracula-for-stash/index.yml
|
||||
```
|
||||
|
||||
=== "README"
|
||||
|
||||
No README available
|
||||
|
||||
=== "Author"
|
||||
|
||||
[UncertainMongoose](https://github.com/UncertainMongoose)
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
|
||||
### [Glassy - A Window to Your Collection](https://github.com/Serechops/Serechops-Stash/tree/main/themes/Glassy/Glassy - A Window to Your Collection){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
A Stash Theme
|
||||
|
||||
=== "Source URL"
|
||||
|
||||
```
|
||||
https://serechops.github.io/Serechops-Stash/index.yml
|
||||
```
|
||||
|
||||
=== "README"
|
||||
|
||||
View [README](https://github.com/Serechops/Serechops-Stash/blob/main/themes/Glassy/README.md){target=_blank}
|
||||
|
||||
=== "Author"
|
||||
|
||||
[serechops](https://github.com/Serechops)
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
|
||||
### [Glassy - Font Overhaul](https://github.com/Serechops/Serechops-Stash/tree/main/themes/Glassy/Glassy - Font Overhaul){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
A Stash Theme
|
||||
|
||||
=== "Source URL"
|
||||
|
||||
```
|
||||
https://serechops.github.io/Serechops-Stash/index.yml
|
||||
```
|
||||
|
||||
=== "README"
|
||||
|
||||
View [README](https://github.com/Serechops/Serechops-Stash/blob/main/themes/Glassy/README.md){target=_blank}
|
||||
|
||||
=== "Author"
|
||||
|
||||
[serechops](https://github.com/Serechops)
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
|
||||
### [Glassy - Front Page Animations and Blur](https://github.com/Serechops/Serechops-Stash/tree/main/themes/Glassy/Glassy - Front Page Animations and Blur){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
A Glassy Add-On Module.
|
||||
|
||||
=== "Source URL"
|
||||
|
||||
```
|
||||
https://serechops.github.io/Serechops-Stash/index.yml
|
||||
```
|
||||
|
||||
=== "README"
|
||||
|
||||
View [README](https://github.com/Serechops/Serechops-Stash/blob/main/themes/Glassy/README.md){target=_blank}
|
||||
|
||||
=== "Author"
|
||||
|
||||
[serechops](https://github.com/Serechops)
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
|
||||
### [Glassy - Marker Wall Redesign](https://github.com/Serechops/Serechops-Stash/tree/main/themes/Glassy/Glassy - Marker Wall Redesign){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
A Glassy Add-On Module.
|
||||
|
||||
=== "Source URL"
|
||||
|
||||
```
|
||||
https://serechops.github.io/Serechops-Stash/index.yml
|
||||
```
|
||||
|
||||
=== "README"
|
||||
|
||||
View [README](https://github.com/Serechops/Serechops-Stash/blob/main/themes/Glassy/README.md){target=_blank}
|
||||
|
||||
=== "Author"
|
||||
|
||||
[serechops](https://github.com/Serechops)
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
|
||||
### [Glassy - Performer Scene Card Details Redesign](https://github.com/Serechops/Serechops-Stash/tree/main/themes/Glassy/Glassy - Performer Scene Card Details Redesign){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
A Glassy Add-On Module.
|
||||
|
||||
=== "Source URL"
|
||||
|
||||
```
|
||||
https://serechops.github.io/Serechops-Stash/index.yml
|
||||
```
|
||||
|
||||
=== "README"
|
||||
|
||||
View [README](https://github.com/Serechops/Serechops-Stash/blob/main/themes/Glassy/README.md){target=_blank}
|
||||
|
||||
=== "Author"
|
||||
|
||||
[serechops](https://github.com/Serechops)
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
|
||||
### [Glassy - Scene and Movie Card Redesign](https://github.com/Serechops/Serechops-Stash/tree/main/themes/Glassy/Glassy - Scene and Movie Card Redesign){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
A Glassy Add-On Module.
|
||||
|
||||
=== "Source URL"
|
||||
|
||||
```
|
||||
https://serechops.github.io/Serechops-Stash/index.yml
|
||||
```
|
||||
|
||||
=== "README"
|
||||
|
||||
View [README](https://github.com/Serechops/Serechops-Stash/blob/main/themes/Glassy/README.md){target=_blank}
|
||||
|
||||
=== "Author"
|
||||
|
||||
[serechops](https://github.com/Serechops)
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
|
||||
### [Glassy - Scene and Movie Card Redesign - No Animated Titles](https://github.com/Serechops/Serechops-Stash/tree/main/themes/Glassy/Glassy - Scene and Movie Card Redesign - No Animated Titles){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
A Glassy Add-On Module.
|
||||
|
||||
=== "Source URL"
|
||||
|
||||
```
|
||||
https://serechops.github.io/Serechops-Stash/index.yml
|
||||
```
|
||||
|
||||
=== "README"
|
||||
|
||||
View [README](https://github.com/Serechops/Serechops-Stash/blob/main/themes/Glassy/README.md){target=_blank}
|
||||
|
||||
=== "Author"
|
||||
|
||||
[serechops](https://github.com/Serechops)
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
|
||||
### [Glassy - Scene Player-Details 60/40](https://github.com/Serechops/Serechops-Stash/tree/main/themes/Glassy/Glassy - Scene Player-Details 60-40){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
A Glassy Add-On Module.
|
||||
|
||||
=== "Source URL"
|
||||
|
||||
```
|
||||
https://serechops.github.io/Serechops-Stash/index.yml
|
||||
```
|
||||
|
||||
=== "README"
|
||||
|
||||
View [README](https://github.com/Serechops/Serechops-Stash/blob/main/themes/Glassy/README.md){target=_blank}
|
||||
|
||||
=== "Author"
|
||||
|
||||
[serechops](https://github.com/Serechops)
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
|
||||
### [Glassy - Scene Player-Details Reversed](https://github.com/Serechops/Serechops-Stash/tree/main/themes/Glassy/Glassy - Scene Player-Details Reversed){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
A Glassy Add-On Module.
|
||||
|
||||
=== "Source URL"
|
||||
|
||||
```
|
||||
https://serechops.github.io/Serechops-Stash/index.yml
|
||||
```
|
||||
|
||||
=== "README"
|
||||
|
||||
View [README](https://github.com/Serechops/Serechops-Stash/blob/main/themes/Glassy/README.md){target=_blank}
|
||||
|
||||
=== "Author"
|
||||
|
||||
[serechops](https://github.com/Serechops)
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
|
||||
### [Glassy - Scene Player-Details Reversed 60/40](https://github.com/Serechops/Serechops-Stash/tree/main/themes/Glassy/Glassy - Scene Player-Details Reversed 60-40){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
A Glassy Add-On Module.
|
||||
|
||||
=== "Source URL"
|
||||
|
||||
```
|
||||
https://serechops.github.io/Serechops-Stash/index.yml
|
||||
```
|
||||
|
||||
=== "README"
|
||||
|
||||
View [README](https://github.com/Serechops/Serechops-Stash/blob/main/themes/Glassy/README.md){target=_blank}
|
||||
|
||||
=== "Author"
|
||||
|
||||
[serechops](https://github.com/Serechops)
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
|
||||
### [Glassy - Smaller Performer Cards on Main Page](https://github.com/Serechops/Serechops-Stash/tree/main/themes/Glassy/Glassy - Smaller Performer Cards on Main Page){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
A Glassy Add-On Module.
|
||||
|
||||
=== "Source URL"
|
||||
|
||||
```
|
||||
https://serechops.github.io/Serechops-Stash/index.yml
|
||||
```
|
||||
|
||||
=== "README"
|
||||
|
||||
View [README](https://github.com/Serechops/Serechops-Stash/blob/main/themes/Glassy/README.md){target=_blank}
|
||||
|
||||
=== "Author"
|
||||
|
||||
[serechops](https://github.com/Serechops)
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
|
||||
### [Glassy - Smaller Performer Image Cards](https://github.com/Serechops/Serechops-Stash/tree/main/themes/Glassy/Glassy - Smaller Performer Image Cards){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
A Glassy Add-On Module.
|
||||
|
||||
=== "Source URL"
|
||||
|
||||
```
|
||||
https://serechops.github.io/Serechops-Stash/index.yml
|
||||
```
|
||||
|
||||
=== "README"
|
||||
|
||||
View [README](https://github.com/Serechops/Serechops-Stash/blob/main/themes/Glassy/README.md){target=_blank}
|
||||
|
||||
=== "Author"
|
||||
|
||||
[serechops](https://github.com/Serechops)
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
|
||||
### [Glassy - Video-Res Icons](https://github.com/Serechops/Serechops-Stash/tree/main/themes/Glassy/Glassy - Video-Res Icons){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
A Glassy Add-On Module.
|
||||
|
||||
=== "Source URL"
|
||||
|
||||
```
|
||||
https://serechops.github.io/Serechops-Stash/index.yml
|
||||
```
|
||||
|
||||
=== "README"
|
||||
|
||||
View [README](https://github.com/Serechops/Serechops-Stash/blob/main/themes/Glassy/README.md){target=_blank}
|
||||
|
||||
=== "Author"
|
||||
|
||||
[serechops](https://github.com/Serechops)
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
|
||||
### [Glassy Images](https://github.com/Serechops/Serechops-Stash/tree/main/themes/Glassy/Glassy - Images){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
Images for A Stash Theme
|
||||
|
||||
=== "Source URL"
|
||||
|
||||
```
|
||||
https://serechops.github.io/Serechops-Stash/index.yml
|
||||
```
|
||||
|
||||
=== "README"
|
||||
|
||||
View [README](https://github.com/Serechops/Serechops-Stash/blob/main/themes/Glassy/README.md){target=_blank}
|
||||
|
||||
=== "Author"
|
||||
|
||||
[serechops](https://github.com/Serechops)
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
|
||||
### [Glassy Installer](https://github.com/Serechops/Serechops-Stash/tree/main/themes/Glassy/Glassy - Installer){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
Glassy meta-package for requirements.
|
||||
|
||||
=== "Source URL"
|
||||
|
||||
```
|
||||
https://serechops.github.io/Serechops-Stash/index.yml
|
||||
```
|
||||
|
||||
=== "README"
|
||||
|
||||
View [README](https://github.com/Serechops/Serechops-Stash/blob/main/themes/Glassy/README.md){target=_blank}
|
||||
|
||||
=== "Author"
|
||||
|
||||
[serechops](https://github.com/Serechops)
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
|
||||
### [hide-donate](https://github.com/feederbox826/themes/tree/main/themes/hide-donate){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
Hide the Donate button.
|
||||
|
||||
=== "Source URL"
|
||||
|
||||
```
|
||||
https://feederbox826.github.io/themes/main/index.yml
|
||||
```
|
||||
|
||||
=== "README"
|
||||
|
||||
View [README](https://github.com/feederbox826/themes/blob/main/themes/hide-donate/README.md){target=_blank}
|
||||
|
||||
=== "Author"
|
||||
|
||||
[feederbox826](https://github.com/feederbox826)
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
|
||||
### [hide-ocount](https://github.com/feederbox826/themes/tree/main/themes/hide-ocount){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
Hide O-Count and O-Count trakcers
|
||||
|
||||
=== "Source URL"
|
||||
|
||||
```
|
||||
https://feederbox826.github.io/themes/main/index.yml
|
||||
```
|
||||
|
||||
=== "README"
|
||||
|
||||
No README available
|
||||
|
||||
=== "Author"
|
||||
|
||||
[feederbox826](https://github.com/feederbox826)
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
|
||||
### [more-studio-row](https://github.com/feederbox826/themes/tree/main/themes/more-studio-row){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
Display more studio per row
|
||||
|
||||
=== "Source URL"
|
||||
|
||||
```
|
||||
https://feederbox826.github.io/themes/main/index.yml
|
||||
```
|
||||
|
||||
=== "README"
|
||||
|
||||
View [README](https://github.com/feederbox826/themes/blob/main/themes/more-studio-row/README.md){target=_blank}
|
||||
|
||||
=== "Author"
|
||||
|
||||
[feederbox826](https://github.com/feederbox826)
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
|
||||
### [performer-grid](https://github.com/feederbox826/themes/tree/main/themes/performer-grid){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
Aligns performer details in a grid
|
||||
|
||||
=== "Source URL"
|
||||
|
||||
```
|
||||
https://feederbox826.github.io/themes/main/index.yml
|
||||
```
|
||||
|
||||
=== "README"
|
||||
|
||||
View [README](https://github.com/feederbox826/themes/blob/main/themes/performer-grid/README.md){target=_blank}
|
||||
|
||||
=== "Author"
|
||||
|
||||
[feederbox826](https://github.com/feederbox826)
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
|
||||
### [Theme - BlackHole](https://github.com/stashapp/CommunityScripts/tree/main/themes/Theme-BlackHole){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
BlackHole Theme for Stash by BViking78
|
||||
|
||||
=== "Source URL"
|
||||
|
||||
```
|
||||
https://stashapp.github.io/CommunityScripts/stable/index.yml
|
||||
```
|
||||
|
||||
=== "README"
|
||||
|
||||
No README available
|
||||
|
||||
=== "Author"
|
||||
|
||||
BViking78
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
|
||||
### [Theme - colorPalette](https://github.com/stashapp/CommunityScripts/tree/main/themes/Theme-ColorPalette){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
Based on the default theme, change the overall color of the page by setting the hue value. Make minor changes to the remaining styles.
|
||||
|
||||
=== "Source URL"
|
||||
|
||||
```
|
||||
https://stashapp.github.io/CommunityScripts/stable/index.yml
|
||||
```
|
||||
|
||||
=== "README"
|
||||
|
||||
No README available
|
||||
|
||||
=== "Author"
|
||||
|
||||
[wql219](https://github.com/wql219)
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
|
||||
### [Theme - Minimal](https://github.com/stashapp/CommunityScripts/tree/main/themes/Theme-Minimal){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
Minimal Theme for Stash
|
||||
|
||||
=== "Source URL"
|
||||
|
||||
```
|
||||
https://stashapp.github.io/CommunityScripts/stable/index.yml
|
||||
```
|
||||
|
||||
=== "README"
|
||||
|
||||
View [README](https://github.com/stashapp/CommunityScripts/blob/main/themes/Theme-Minimal/README.md){target=_blank}
|
||||
|
||||
=== "Author"
|
||||
|
||||
[deuulc](https://github.com/deuulc)
|
||||
|
||||
=== "Screenshots"
|
||||
{ loading=lazy } { loading=lazy } { loading=lazy } { loading=lazy }
|
||||
|
||||
### [Theme - ModernDark](https://github.com/stashapp/CommunityScripts/tree/main/themes/Theme-ModernDark){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
ModernDark Theme for Stash by cj13
|
||||
|
||||
=== "Source URL"
|
||||
|
||||
```
|
||||
https://stashapp.github.io/CommunityScripts/stable/index.yml
|
||||
```
|
||||
|
||||
=== "README"
|
||||
|
||||
No README available
|
||||
|
||||
=== "Author"
|
||||
|
||||
[cj13](https://github.com/cj12312021)
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
|
||||
### [Theme - NeonDark](https://github.com/stashapp/CommunityScripts/tree/main/themes/Theme-NeonDark){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
NeonDark Theme for Stash by Dankonite
|
||||
|
||||
=== "Source URL"
|
||||
|
||||
```
|
||||
https://stashapp.github.io/CommunityScripts/stable/index.yml
|
||||
```
|
||||
|
||||
=== "README"
|
||||
|
||||
No README available
|
||||
|
||||
=== "Author"
|
||||
|
||||
Dankonite
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
|
||||
### [Theme - Night](https://github.com/stashapp/CommunityScripts/tree/main/themes/Theme-Night){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
Night Theme for Stash (unknown author)
|
||||
|
||||
=== "Source URL"
|
||||
|
||||
```
|
||||
https://stashapp.github.io/CommunityScripts/stable/index.yml
|
||||
```
|
||||
|
||||
=== "README"
|
||||
|
||||
No README available
|
||||
|
||||
=== "Author"
|
||||
|
||||
No Author
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
|
||||
### [Theme - Plex](https://github.com/stashapp/CommunityScripts/tree/main/themes/Theme-Plex){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
Plex Theme for Stash by Fidelio 2020
|
||||
|
||||
=== "Source URL"
|
||||
|
||||
```
|
||||
https://stashapp.github.io/CommunityScripts/stable/index.yml
|
||||
```
|
||||
|
||||
=== "README"
|
||||
|
||||
View [README](https://github.com/stashapp/CommunityScripts/blob/main/themes/Theme-Plex/README.md){target=_blank}
|
||||
|
||||
=== "Author"
|
||||
|
||||
Fidelio
|
||||
|
||||
=== "Screenshots"
|
||||
{ loading=lazy }
|
||||
|
||||
### [Theme - Plex Better Styles](https://github.com/tetrax-10/stash-stuffs/tree/main/themes/PlexBetterStyles){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
A modified version of Stash-Plex theme
|
||||
|
||||
=== "Source URL"
|
||||
|
||||
```
|
||||
https://tetrax-10.github.io/stash-stuffs/index.yml
|
||||
```
|
||||
|
||||
=== "README"
|
||||
|
||||
View [README](https://github.com/Tetrax-10/stash-stuffs/tree/main#1-plex-better-styles){target=_blank}
|
||||
|
||||
=== "Author"
|
||||
|
||||
[tetrax-10](https://github.com/Tetrax-10)
|
||||
|
||||
=== "Screenshots"
|
||||
{ loading=lazy } { loading=lazy } { loading=lazy } { loading=lazy } { loading=lazy } { loading=lazy } { loading=lazy }
|
||||
|
||||
### [Theme - Pornhub](https://github.com/stashapp/CommunityScripts/tree/main/themes/Theme-PornHub){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
PornHub Theme for Stash by neurokinin
|
||||
|
||||
=== "Source URL"
|
||||
|
||||
```
|
||||
https://stashapp.github.io/CommunityScripts/stable/index.yml
|
||||
```
|
||||
|
||||
=== "README"
|
||||
|
||||
No README available
|
||||
|
||||
=== "Author"
|
||||
|
||||
ronilaukkarinen
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
|
||||
### [Theme - Pulsar](https://github.com/stashapp/CommunityScripts/tree/main/themes/Theme-Pulsar){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
Plex Theme for Stash by Fonzie 2020-21
|
||||
|
||||
=== "Source URL"
|
||||
|
||||
```
|
||||
https://stashapp.github.io/CommunityScripts/stable/index.yml
|
||||
```
|
||||
|
||||
=== "README"
|
||||
|
||||
No README available
|
||||
|
||||
=== "Author"
|
||||
|
||||
Fonzie
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
|
||||
### [Theme - PulsarLight](https://github.com/stashapp/CommunityScripts/tree/main/themes/Theme-PulsarLight){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
Plex Theme for Stash by Fonzie 2021
|
||||
|
||||
=== "Source URL"
|
||||
|
||||
```
|
||||
https://stashapp.github.io/CommunityScripts/stable/index.yml
|
||||
```
|
||||
|
||||
=== "README"
|
||||
|
||||
No README available
|
||||
|
||||
=== "Author"
|
||||
|
||||
Fonzie
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
|
||||
### [Theme - Rounded Yellow](https://github.com/stashapp/CommunityScripts/tree/main/themes/Theme-RoundedYellow){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
Theme with rounded corners and yellow accents
|
||||
|
||||
=== "Source URL"
|
||||
|
||||
```
|
||||
https://stashapp.github.io/CommunityScripts/stable/index.yml
|
||||
```
|
||||
|
||||
=== "README"
|
||||
|
||||
View [README](https://github.com/stashapp/CommunityScripts/blob/main/themes/Theme-RoundedYellow/README.md){target=_blank}
|
||||
|
||||
=== "Author"
|
||||
|
||||
Fonzie
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
|
||||
### [wrap-subtag](https://github.com/feederbox826/themes/tree/main/themes/wrap-subtag){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
Wraps detail values (subtags)
|
||||
|
||||
=== "Source URL"
|
||||
|
||||
```
|
||||
https://feederbox826.github.io/themes/main/index.yml
|
||||
```
|
||||
|
||||
=== "README"
|
||||
|
||||
No README available
|
||||
|
||||
=== "Author"
|
||||
|
||||
[feederbox826](https://github.com/feederbox826)
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
@ -1,16 +0,0 @@
|
||||
---
|
||||
title: Userscripts
|
||||
---
|
||||
|
||||
!!! info
|
||||
Userscripts are created by third parties and not officially affiliated or supported by the core Stash team. If you have issues, please reach out to the original creators.
|
||||
|
||||
Userscripts are programs written in Javascript that modifies web pages to improve browsing with new features, formatting and more.
|
||||
|
||||
## Install
|
||||
|
||||
To install the userscript you will need a browser extension such as:
|
||||
|
||||
- [Violentmonkey](https://violentmonkey.github.io){:target="_blank"}
|
||||
- [Tampermonkey](https://www.tampermonkey.net){:target="_blank"}
|
||||
- [Greasemonkey](https://www.greasespot.net){:target="_blank"}
|
||||
@ -1,265 +0,0 @@
|
||||
---
|
||||
title: Browse userscripts
|
||||
---
|
||||
|
||||
??? tip "stash-git-index"
|
||||
Exhaustive list of git repositories related to Stash [Google Sheets document](https://docs.google.com/spreadsheets/d/1yudaRDo_3ZOVivviffvQiSGU_gNpgkG4kIYrJP6DHP4/edit?usp=sharing).
|
||||
|
||||
??? tip "Userscript no longer works"
|
||||
If you found that userscript is no longer working you can try contacting the author directly or create an issue on their Git platform. You can also create a GitHub issue on [Stash-Docs](https://github.com/stashapp/Stash-Docs){target=_blank} for it to be removed from the list.
|
||||
|
||||
## Stash userscripts
|
||||
|
||||
??? tip "Compatability"
|
||||
Make sure your instance URL is declared in `@match`.
|
||||
|
||||
### [Performer Image Carousel](https://github.com/Serechops/Serechops-Stash/blob/main/Stash_Userscripts/performerImageCarousel.user.js){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
Displays a carousel of performer images in the header.
|
||||
|
||||
=== "Author"
|
||||
|
||||
[Serechops](https://github.com/Serechops){target=_blank}
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
### [stash-checker](https://github.com/timo95/stash-checker/releases/latest){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
Stash Checker is an userscript for porn websites to check if a Scene/Performer is in your Stash instance. It shows a checkmark if an item was found in your Stash. Hovering over the checkmark gives you a tooltip with information about the item in your Stash.
|
||||
|
||||
=== "Author"
|
||||
|
||||
[timo95](https://github.com/timo95){target=_blank}
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
{ loading=lazy }
|
||||
{ loading=lazy }
|
||||
|
||||
|
||||
### [stashCreateAll](https://github.com/Serechops/Serechops-Stash/blob/main/Stash_Userscripts/stashCreateAll.user.js){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
Automate batch creation and tagging
|
||||
|
||||
=== "Author"
|
||||
|
||||
[Serechops](https://github.com/Serechops){target=_blank}
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
## stash-box userscripts
|
||||
|
||||
??? tip "stash-box compatability"
|
||||
Sometimes just updating `@match` is enough to make the userscript to work on a different stash-box instance. But it's not a guarantee.
|
||||
|
||||
### [db-noto-color](https://github.com/feederbox826/userscripts/blob/main/userscript/db-noto-color.user.js){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
Adds Noto Color Emoji to stash-box instances
|
||||
|
||||
=== "Author"
|
||||
|
||||
[feederbox826](https://github.com/feederbox826){target=_blank}
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
### [FansDB Submission Helper](https://github.com/stashapp/CommunityScripts/blob/main/userscripts/FansDB_Submission_Helper/fansdb_submission_helper.user.js){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
- Adds button to add all unmatched aliases to performer
|
||||
- Adds button to add all unmatched urls to performer
|
||||
- Adds button to add all unmatched measurements to performer (if they match expected formats)
|
||||
- Convert unmatched urls from regular strings to linked strings
|
||||
|
||||
=== "README"
|
||||
|
||||
View [README](https://github.com/stashapp/CommunityScripts/blob/main/userscripts/FansDB_Submission_Helper/README.md)
|
||||
|
||||
=== "Author"
|
||||
|
||||
[mmenanno](https://github.com/mmenanno){target=_blank}, [DogmaDragon](https://github.com/DogmaDragon){target=_blank}
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
{ loading=lazy }
|
||||
{ loading=lazy }
|
||||
|
||||
### [StashDB Submission Helper](https://github.com/stashapp/CommunityScripts/blob/main/userscripts/StashDB_Submission_Helper/stashdb_submission_helper.user.js){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
- Adds button to add all unmatched aliases to performer
|
||||
- Adds button to add all unmatched urls to performer
|
||||
- Adds button to add all unmatched measurements to performer (if they match expected formats)
|
||||
- Convert unmatched urls from regular strings to linked strings
|
||||
|
||||
=== "README"
|
||||
|
||||
View [README](https://github.com/stashapp/CommunityScripts/blob/main/userscripts/StashDB_Submission_Helper/README.md)
|
||||
|
||||
=== "Author"
|
||||
|
||||
[mmenanno](https://github.com/mmenanno){target=_blank}
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
{ loading=lazy }
|
||||
{ loading=lazy }
|
||||
|
||||
### [stashdb-diff](https://github.com/feederbox826/userscripts/blob/main/userscript/stashdb-diff.user.js){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
add character-by-character diff for stashdb
|
||||
|
||||
=== "Author"
|
||||
|
||||
[feederbox826](https://github.com/feederbox826){target=_blank}
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
### [stashdb-link-chip](https://github.com/feederbox826/userscripts/blob/main/userscript/stashdb-link-chip.user.js){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
add chips to links in edit queue
|
||||
|
||||
=== "Author"
|
||||
|
||||
[feederbox826](https://github.com/feederbox826){target=_blank}
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
### [stashdb-relative-date](https://github.com/feederbox826/userscripts/blob/main/userscript/stashdb-relative-date.user.js){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
adds relative dates to stashdb
|
||||
|
||||
=== "Author"
|
||||
|
||||
[feederbox826](https://github.com/feederbox826){target=_blank}
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
### [stashdb-rm](https://github.com/feederbox826/userscripts/blob/main/userscript/stashdb-rm.user.js){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
Remove scenes from loaded studios on stashdb.org
|
||||
|
||||
=== "Author"
|
||||
|
||||
[feederbox826](https://github.com/feederbox826){target=_blank}
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
### [Studio Image Blur for StashDB](https://github.com/Serechops/Serechops-Stash/blob/main/StashDB%20Userscript/Studio%20Image%20Blur%20for%20StashDB-0.1.user.js){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
Blurs images from specific studios on StashDB scene cards, based on studio name and img src
|
||||
|
||||
=== "Author"
|
||||
|
||||
[Serechops](https://github.com/Serechops){target=_blank}
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
## Utility userscripts
|
||||
|
||||
There are some userscripts that might be useful to Stash users, but does not directly involve Stash or stash-box instances.
|
||||
|
||||
### [twitter-media-unblur](https://github.com/feederbox826/userscripts/blob/main/userscript/twitter-media-unblur.user.js){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
unblur all twitter sensitive media post
|
||||
|
||||
=== "Author"
|
||||
|
||||
[feederbox826](https://github.com/feederbox826){target=_blank}
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
### [PMVHaven AutoDL](https://github.com/S3L3CT3DLoves/UserScripts/blob/main/scripts/PMVHaven-Auto-DL.user.js){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
Dashboard to simplify PMV downloading on PMVHaven
|
||||
|
||||
=== "Author"
|
||||
|
||||
[S3L3CT3DLoves](https://github.com/S3L3CT3DLoves){target=_blank}
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
### [SpankBang AutoDL](https://github.com/S3L3CT3DLoves/UserScripts/blob/main/scripts/SB-Auto-DL.user.js){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
Dashboard to download all a user's videos on SpankBang
|
||||
|
||||
=== "Author"
|
||||
|
||||
[S3L3CT3DLoves](https://github.com/S3L3CT3DLoves){target=_blank}
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
### [SpankBang Frontend Scraper](https://github.com/S3L3CT3DLoves/UserScripts/blob/main/scripts/SB-Frontend-Scraper.user.js){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
Use in Stash to scrape Spankbang from the browser, bypassing cloudflare issues
|
||||
|
||||
=== "Author"
|
||||
|
||||
[S3L3CT3DLoves](https://github.com/S3L3CT3DLoves){target=_blank}
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
### [LifeSelector unblur](https://github.com/feederbox826/userscripts/blob/main/userscript/ls-unblur.user.js){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
Unblur LifeSelector website
|
||||
|
||||
=== "Author"
|
||||
|
||||
[feederbox826](https://github.com/feederbox826){target=_blank}
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
### [redgifs autosettings](https://github.com/feederbox826/userscripts/blob/main/userscript/redgifs-auto.user.js){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
Auto Unmute / Play / HD redgifs
|
||||
|
||||
=== "Author"
|
||||
|
||||
[feederbox826](https://github.com/feederbox826){target=_blank}
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
### [Stash-TMDB Sync/Scraper](https://github.com/W0lfieW0lf/StashApp-Tools/blob/main/Userscripts/Stash-TMDB_SyncButton%20.js){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
Sync Button in TMDB Site.to Create Movie/Performer in Stash and Update performer missing info.
|
||||
|
||||
=== "Author"
|
||||
|
||||
[W0lfieW0lf](https://github.com/W0lfieW0lf){target=_blank}
|
||||
|
||||
=== "Screenshots"
|
||||

|
||||

|
||||
@ -1,10 +0,0 @@
|
||||
---
|
||||
title: Utilities
|
||||
---
|
||||
|
||||
!!! info
|
||||
Utilities are created by third parties and not officially affiliated or supported by the core Stash team. If you have issues, please reach out to the original creators.
|
||||
|
||||
Utilities are other external applications that utilise or interact with Stash in some way.
|
||||
|
||||
To install follow the utilities install instructions.
|
||||
@ -1,135 +0,0 @@
|
||||
---
|
||||
title: Browse utilities
|
||||
---
|
||||
|
||||
??? tip "stash-git-index"
|
||||
Exhaustive list of git repositories related to Stash [Google Sheets document](https://docs.google.com/spreadsheets/d/1yudaRDo_3ZOVivviffvQiSGU_gNpgkG4kIYrJP6DHP4/edit?usp=sharing).
|
||||
|
||||
??? tip "Utility no longer works"
|
||||
If you found that utility is no longer working you can try contacting the author directly or create an issue on their Git platform. You can also create a GitHub issue on [Stash-Docs](https://github.com/stashapp/Stash-Docs){target=_blank} for it to be removed from the list.
|
||||
|
||||
### [clip-mash](https://github.com/soundchaser128/clip-mash){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
Video editing app that allows you to automate creating compilations from multiple videos. It runs in your browser. It's mostly made for, ahem, adult content, which is why it can connect to Stash and fetch videos and scene markers from there to guide the video creation process. You can also use local files and set the markers in ClipMash itself and then generate a compilation based on that.
|
||||
|
||||
=== "Author"
|
||||
|
||||
[soundchaser128](https://github.com/soundchaser128){target=_blank}
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
### [Stash App for Android TV](https://github.com/damontecres/StashAppAndroidTV){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
A basic Android TV app for browsing and playing videos from a Stash server. Not all features of Stash are supported, but the basics for browsing, searching, and playing scenes should work. The app is not intended to perform administrative functions such as scanning, scraping, or editing details.
|
||||
|
||||
=== "Author"
|
||||
|
||||
[damontecres](https://github.com/damontecres){target=_blank}
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
### [stash-compilation-maker](https://github.com/soundchaser128/stash-compilation-maker){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
Connects to your Stash instance and creates simple compilation videos from scene markers. You select one or more tags, or one or more performers and it will take (currently) the first 15 seconds of video after the marker start and compile all of the markers into one video.
|
||||
|
||||
=== "Author"
|
||||
|
||||
[soundchaser128](https://github.com/soundchaser128){target=_blank}
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
### [stash-qmt](https://github.com/PokerFacowaty/stash-qmt){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
stash-qmt (quick manual tagger) is a simple GUI tool designed to help with cases of manually tagging multiple similar scenes (manually, as in, with having to actually watch them) in Stash.
|
||||
|
||||
=== "Author"
|
||||
|
||||
[PokerFacowaty](https://github.com/PokerFacowaty){target=_blank}
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||

|
||||

|
||||
|
||||
### [stash-vr-companion](https://github.com/Tweeticoats/stash-vr-companion){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
Similar to stash-deovr as above but designed as a web app that sits in a docker container next to stash to make it easier to use and add more functionality.
|
||||
|
||||
=== "Author"
|
||||
|
||||
[Tweeticoats](https://github.com/Tweeticoats){target=_blank}
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
### [stash-vr](https://github.com/o-fl0w/stash-vr){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
Watch your Stash library in VR for that full immersion effect.
|
||||
|
||||
Stash-VR bridges your Stash instance and VR video player allowing you to browse, play and manage your scenes using the video players native VR UI.
|
||||
|
||||
=== "Author"
|
||||
|
||||
[o-fl0w](https://github.com/o-fl0w){target=_blank}
|
||||
|
||||
=== "Screenshots"
|
||||
### [stash-webvr](https://gitlab.com/stish/stash-webvr){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
WebVR friendly Stash client that displays only videos tagged with "Virtual Reality" tag.
|
||||
|
||||
=== "Author"
|
||||
|
||||
[stishadmin](https://gitlab.com/stishadmin){target=_blank}
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
### [Stash_helper](https://github.com/philpw99/Stash_Helper){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
Adds some helping features to Stash (Bookmarks, playlist, external player, etc). Windows only.
|
||||
|
||||
=== "Author"
|
||||
|
||||
[philpw99](https://github.com/philpw99){target=_blank}
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||

|
||||
|
||||
### [StashBox Performer Bot](https://github.com/S3L3CT3DLoves/StashBots){target=_blank}
|
||||
|
||||
=== "Description"
|
||||
|
||||
This program is designed to help automate the creation and updating of Performers on StashBox instances. It is designed to copy Performer info from one StashBox to another, to avoid having to maintain the information in both sources manually.
|
||||
|
||||
=== "Author"
|
||||
|
||||
[S3L3CT3DLoves](https://github.com/S3L3CT3DLoves){target=_blank}
|
||||
|
||||
=== "Screenshots"
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
25
mkdocs.yml
25
mkdocs.yml
@ -162,7 +162,7 @@ nav:
|
||||
- Backup and restore database: guides/backup-and-restore-database.md
|
||||
- Reverse proxy: guides/reverse-proxy.md
|
||||
- Troubleshooting video playback: guides/troubleshooting-video-playback.md
|
||||
- Advanced configuration options: guides/advanced-configuration-options.mdd
|
||||
- Advanced configuration options: guides/advanced-configuration-options.md
|
||||
- Manually editing the Stash sqlite3 database: guides/manually-editing-the-stash-sqlite3-database.md
|
||||
- Scraping metadata behind login: guides/scraping-metadata-behind-login.md
|
||||
- Community wiki:
|
||||
@ -173,26 +173,17 @@ nav:
|
||||
- Scrapers: metadata-sources/scrapers.md
|
||||
- Plugins:
|
||||
- plugins/index.md
|
||||
- Browse plugins: plugins/list.md
|
||||
- Browse plugins: https://discourse.stashapp.cc/c/plugins/18
|
||||
- Themes:
|
||||
- themes/index.md
|
||||
- Browse themes: themes/list.md
|
||||
- Custom CSS snippets: themes/custom-css-snippets.md
|
||||
- Userscripts:
|
||||
- userscripts/index.md
|
||||
- Browse userscripts: userscripts/list.md
|
||||
- Scripts:
|
||||
- scripts/index.md
|
||||
- Browse scripts: scripts/list.md
|
||||
- Utilities:
|
||||
- utilities/index.md
|
||||
- Browse utilities: utilities/list.md
|
||||
- Integrations:
|
||||
- integrations/index.md
|
||||
- Browse integrations: integrations/list.md
|
||||
- Browse themes: https://discourse.stashapp.cc/tags/c/plugins/18/none/theme
|
||||
- Custom CSS snippets: https://discourse.stashapp.cc/t/custom-css-snippets/4043
|
||||
- Other projects:
|
||||
- other-projects/index.md
|
||||
- Browse other projects: https://discourse.stashapp.cc/c/plugins/other-projects/15
|
||||
- API: api.md
|
||||
- Community forum: https://discourse.stashapp.cc
|
||||
- Code of conduct: code-of-conduct.md
|
||||
- Forum: https://discourse.stashapp.cc
|
||||
|
||||
extra:
|
||||
social:
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user