https://github.com/dav-idka-j/stash-plugins
A collection of plugins for stash
https://github.com/dav-idka-j/stash-plugins
javascript stash stash-plugin stashapp statistics
Last synced: 3 months ago
JSON representation
A collection of plugins for stash
- Host: GitHub
- URL: https://github.com/dav-idka-j/stash-plugins
- Owner: dav-idka-j
- License: mit
- Created: 2025-12-28T16:42:50.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2026-01-01T10:21:24.000Z (5 months ago)
- Last Synced: 2026-01-13T21:08:44.804Z (5 months ago)
- Topics: javascript, stash, stash-plugin, stashapp, statistics
- Language: JavaScript
- Homepage:
- Size: 516 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# StashApp Plugin Index
This repository contains plugins for the organizer [Stash](https://stashapp.cc/).
### Tested Stash Version
These plugins have been tested to work with Stash version `v0.30.X`.
- **CommunityScriptsUILibrary**: A shared library providing common helper functions for other plugins, such as GraphQL API requests and UI element manipulation. This is a simple copy of the content of the [CommunityScripts](https://github.com/stashapp/CommunityScripts/tree/main/plugins/CommunityScriptsUILibrary) and is included for the `requires` dependency mechanism to work properly within this index, as per [Stash plugin documentation](https://docs.stashapp.cc/in-app-manual/plugins/#creating-plugins).
- **StashGraphs**: A shared charting library for rendering visualizations like bar, pie, and radar charts using [Chart.js](https://www.chartjs.org).
- **OCountStatistics**: Provides locally computed, statistical insights and visualizations instance under `/stats`.
- **Unwind**: A "year in review" plugin that presents a summary of user activity for a given yearunder `/stats`.
## Installation
To install plugins, please consult the official StashApp manual for plugin installation instructions: [StashApp Plugin Installation Guide](https://docs.stashapp.cc/in-app-manual/plugins/)
For **stable** versions of the plugin add the following index to the available plugins
```
https://raw.githubusercontent.com/dav-idka-j/stash-plugins/refs/heads/main/index.yml
```
For the **in-development** versions use
```
https://raw.githubusercontent.com/dav-idka-j/stash-plugins/refs/heads/dev/index.yml
```
## Building Plugins
This project uses `make` to automate the building of plugin `.zip` files and the `index.yml` file.
### Prerequisites
To build the plugins, you will need the following tools installed:
- `make`
- `zip`
- `yq` (version 4+)
To build all plugins and update `index.yml`:
```bash
make
```