├── .github └── workflows │ └── deploy.yml ├── .gitignore ├── README.md ├── images ├── Stash Batch Query Edit │ ├── config.png │ └── scenes-tagger.png ├── Stash Batch Result Toggle │ ├── config.png │ └── scenes-tagger.png ├── Stash Batch Save │ └── scenes-tagger.png ├── Stash Batch Search │ └── scenes-tagger.png ├── Stash Markdown │ └── tag-description.png ├── Stash Markers Autoscroll │ └── scroll-settings.png ├── Stash New Performer Filter Button │ └── performers-page.png ├── Stash Performer Audit Task Button │ └── performers-page.png ├── Stash Performer Custom Fields │ ├── custom-fields-edit.png │ ├── custom-fields-view-compact.png │ ├── custom-fields-view.png │ └── performer-details-edit.png ├── Stash Performer Image Cropper │ └── performer-image-cropper.png ├── Stash Performer Markers Tab │ └── performer-page.png ├── Stash Performer Tagger Additions │ └── performer-tagger.png ├── Stash Performer URL Searchbox │ └── performers-page.png ├── Stash Scene Tagger Additions │ ├── config.png │ └── scenes-tagger.png ├── Stash Scene Tagger Colorizer │ ├── config.png │ ├── scenes-tagger.png │ └── tag-colors.png ├── Stash Scene Tagger Draft Submit │ └── scenes-tagger.png ├── Stash Set Stashbox Favorite Performers │ └── performers-page.png ├── Stash StashID Icon │ ├── performer-page.png │ ├── scene-page.png │ └── studio-page.png ├── Stash StashID Input │ ├── performer-page.png │ └── studio-page.png ├── Stash Stashbox Scene Count │ └── performer.png ├── Stash Stats │ └── stats-page.png ├── Stash Tag Image Cropper │ └── tag-image-cropper.png ├── Stash Video Player AB Loop Time Input │ └── ab-loop-time-input.png └── Userscript Functions Plugin │ ├── plugin-tasks.png │ └── system-settings.png └── plugins ├── stashBatchQueryEdit ├── stashBatchQueryEdit.js └── stashBatchQueryEdit.yml ├── stashBatchResultToggle ├── stashBatchResultToggle.js └── stashBatchResultToggle.yml ├── stashBatchSave ├── stashBatchSave.js └── stashBatchSave.yml ├── stashBatchSearch ├── stashBatchSearch.js └── stashBatchSearch.yml ├── stashMarkdown ├── stashMarkdown.js └── stashMarkdown.yml ├── stashMarkersAutoscroll ├── stashMarkersAutoscroll.js └── stashMarkersAutoscroll.yml ├── stashNewPerformerFilterButton ├── stashNewPerformerFilterButton.js └── stashNewPerformerFilterButton.yml ├── stashOpenMediaPlayer ├── log.py ├── stashOpenMediaPlayer.js ├── stashOpenMediaPlayer.py └── stashOpenMediaPlayer.yml ├── stashPerformerAuditTaskButton ├── audit_performer_urls.py ├── log.py ├── performer_url_regexes.txt ├── requirements.txt ├── stashPerformerAuditTaskButton.js ├── stashPerformerAuditTaskButton.py └── stashPerformerAuditTaskButton.yml ├── stashPerformerCustomFields ├── README.md ├── performer_details.py ├── requirements.txt ├── stashPerformerCustomFields.js ├── stashPerformerCustomFields.py └── stashPerformerCustomFields.yml ├── stashPerformerImageCropper ├── stashPerformerImageCropper.js └── stashPerformerImageCropper.yml ├── stashPerformerMarkersTab ├── stashPerformerMarkersTab.js └── stashPerformerMarkersTab.yml ├── stashPerformerTaggerAdditions ├── stashPerformerTaggerAdditions.js └── stashPerformerTaggerAdditions.yml ├── stashPerformerURLSearchbox ├── stashPerformerURLSearchbox.js └── stashPerformerURLSearchbox.yml ├── stashSceneTaggerAdditions ├── stashSceneTaggerAdditions.js └── stashSceneTaggerAdditions.yml ├── stashSceneTaggerColorizer ├── stashSceneTaggerColorizer.js └── stashSceneTaggerColorizer.yml ├── stashSceneTaggerDraftSubmit ├── stashSceneTaggerDraftSubmit.js └── stashSceneTaggerDraftSubmit.yml ├── stashSetStashboxFavoritePerformers ├── favorite_performers_sync.py ├── log.py ├── requirements.txt ├── stashSetStashboxFavoritePerformers.js ├── stashSetStashboxFavoritePerformers.py └── stashSetStashboxFavoritePerformers.yml ├── stashStashIDIcon ├── stashStashIDIcon.js └── stashStashIDIcon.yml ├── stashStashIDInput ├── stashStashIDInput.js └── stashStashIDInput.yml ├── stashStashboxSceneCount ├── log.py ├── requirements.txt ├── stashStashboxSceneCount.js ├── stashStashboxSceneCount.py ├── stashStashboxSceneCount.yml └── stashbox_scene_counts.py ├── stashStats ├── README.md ├── config.default.json ├── stashStats.js └── stashStats.yml ├── stashTagImageCropper ├── stashTagImageCropper.js └── stashTagImageCropper.yml ├── stashUserscriptLibrary7dJx1qP ├── stashUserscriptLibrary7dJx1qP.js └── stashUserscriptLibrary7dJx1qP.yml └── stashVideoPlayerABLoopTimeInput ├── stashVideoPlayerABLoopTimeInput.js └── stashVideoPlayerABLoopTimeInput.yml /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | stash-plugins.code-workspace -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/README.md -------------------------------------------------------------------------------- /images/Stash Batch Query Edit/config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/images/Stash Batch Query Edit/config.png -------------------------------------------------------------------------------- /images/Stash Batch Query Edit/scenes-tagger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/images/Stash Batch Query Edit/scenes-tagger.png -------------------------------------------------------------------------------- /images/Stash Batch Result Toggle/config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/images/Stash Batch Result Toggle/config.png -------------------------------------------------------------------------------- /images/Stash Batch Result Toggle/scenes-tagger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/images/Stash Batch Result Toggle/scenes-tagger.png -------------------------------------------------------------------------------- /images/Stash Batch Save/scenes-tagger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/images/Stash Batch Save/scenes-tagger.png -------------------------------------------------------------------------------- /images/Stash Batch Search/scenes-tagger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/images/Stash Batch Search/scenes-tagger.png -------------------------------------------------------------------------------- /images/Stash Markdown/tag-description.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/images/Stash Markdown/tag-description.png -------------------------------------------------------------------------------- /images/Stash Markers Autoscroll/scroll-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/images/Stash Markers Autoscroll/scroll-settings.png -------------------------------------------------------------------------------- /images/Stash New Performer Filter Button/performers-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/images/Stash New Performer Filter Button/performers-page.png -------------------------------------------------------------------------------- /images/Stash Performer Audit Task Button/performers-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/images/Stash Performer Audit Task Button/performers-page.png -------------------------------------------------------------------------------- /images/Stash Performer Custom Fields/custom-fields-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/images/Stash Performer Custom Fields/custom-fields-edit.png -------------------------------------------------------------------------------- /images/Stash Performer Custom Fields/custom-fields-view-compact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/images/Stash Performer Custom Fields/custom-fields-view-compact.png -------------------------------------------------------------------------------- /images/Stash Performer Custom Fields/custom-fields-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/images/Stash Performer Custom Fields/custom-fields-view.png -------------------------------------------------------------------------------- /images/Stash Performer Custom Fields/performer-details-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/images/Stash Performer Custom Fields/performer-details-edit.png -------------------------------------------------------------------------------- /images/Stash Performer Image Cropper/performer-image-cropper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/images/Stash Performer Image Cropper/performer-image-cropper.png -------------------------------------------------------------------------------- /images/Stash Performer Markers Tab/performer-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/images/Stash Performer Markers Tab/performer-page.png -------------------------------------------------------------------------------- /images/Stash Performer Tagger Additions/performer-tagger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/images/Stash Performer Tagger Additions/performer-tagger.png -------------------------------------------------------------------------------- /images/Stash Performer URL Searchbox/performers-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/images/Stash Performer URL Searchbox/performers-page.png -------------------------------------------------------------------------------- /images/Stash Scene Tagger Additions/config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/images/Stash Scene Tagger Additions/config.png -------------------------------------------------------------------------------- /images/Stash Scene Tagger Additions/scenes-tagger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/images/Stash Scene Tagger Additions/scenes-tagger.png -------------------------------------------------------------------------------- /images/Stash Scene Tagger Colorizer/config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/images/Stash Scene Tagger Colorizer/config.png -------------------------------------------------------------------------------- /images/Stash Scene Tagger Colorizer/scenes-tagger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/images/Stash Scene Tagger Colorizer/scenes-tagger.png -------------------------------------------------------------------------------- /images/Stash Scene Tagger Colorizer/tag-colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/images/Stash Scene Tagger Colorizer/tag-colors.png -------------------------------------------------------------------------------- /images/Stash Scene Tagger Draft Submit/scenes-tagger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/images/Stash Scene Tagger Draft Submit/scenes-tagger.png -------------------------------------------------------------------------------- /images/Stash Set Stashbox Favorite Performers/performers-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/images/Stash Set Stashbox Favorite Performers/performers-page.png -------------------------------------------------------------------------------- /images/Stash StashID Icon/performer-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/images/Stash StashID Icon/performer-page.png -------------------------------------------------------------------------------- /images/Stash StashID Icon/scene-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/images/Stash StashID Icon/scene-page.png -------------------------------------------------------------------------------- /images/Stash StashID Icon/studio-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/images/Stash StashID Icon/studio-page.png -------------------------------------------------------------------------------- /images/Stash StashID Input/performer-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/images/Stash StashID Input/performer-page.png -------------------------------------------------------------------------------- /images/Stash StashID Input/studio-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/images/Stash StashID Input/studio-page.png -------------------------------------------------------------------------------- /images/Stash Stashbox Scene Count/performer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/images/Stash Stashbox Scene Count/performer.png -------------------------------------------------------------------------------- /images/Stash Stats/stats-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/images/Stash Stats/stats-page.png -------------------------------------------------------------------------------- /images/Stash Tag Image Cropper/tag-image-cropper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/images/Stash Tag Image Cropper/tag-image-cropper.png -------------------------------------------------------------------------------- /images/Stash Video Player AB Loop Time Input/ab-loop-time-input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/images/Stash Video Player AB Loop Time Input/ab-loop-time-input.png -------------------------------------------------------------------------------- /images/Userscript Functions Plugin/plugin-tasks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/images/Userscript Functions Plugin/plugin-tasks.png -------------------------------------------------------------------------------- /images/Userscript Functions Plugin/system-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/images/Userscript Functions Plugin/system-settings.png -------------------------------------------------------------------------------- /plugins/stashBatchQueryEdit/stashBatchQueryEdit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashBatchQueryEdit/stashBatchQueryEdit.js -------------------------------------------------------------------------------- /plugins/stashBatchQueryEdit/stashBatchQueryEdit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashBatchQueryEdit/stashBatchQueryEdit.yml -------------------------------------------------------------------------------- /plugins/stashBatchResultToggle/stashBatchResultToggle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashBatchResultToggle/stashBatchResultToggle.js -------------------------------------------------------------------------------- /plugins/stashBatchResultToggle/stashBatchResultToggle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashBatchResultToggle/stashBatchResultToggle.yml -------------------------------------------------------------------------------- /plugins/stashBatchSave/stashBatchSave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashBatchSave/stashBatchSave.js -------------------------------------------------------------------------------- /plugins/stashBatchSave/stashBatchSave.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashBatchSave/stashBatchSave.yml -------------------------------------------------------------------------------- /plugins/stashBatchSearch/stashBatchSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashBatchSearch/stashBatchSearch.js -------------------------------------------------------------------------------- /plugins/stashBatchSearch/stashBatchSearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashBatchSearch/stashBatchSearch.yml -------------------------------------------------------------------------------- /plugins/stashMarkdown/stashMarkdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashMarkdown/stashMarkdown.js -------------------------------------------------------------------------------- /plugins/stashMarkdown/stashMarkdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashMarkdown/stashMarkdown.yml -------------------------------------------------------------------------------- /plugins/stashMarkersAutoscroll/stashMarkersAutoscroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashMarkersAutoscroll/stashMarkersAutoscroll.js -------------------------------------------------------------------------------- /plugins/stashMarkersAutoscroll/stashMarkersAutoscroll.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashMarkersAutoscroll/stashMarkersAutoscroll.yml -------------------------------------------------------------------------------- /plugins/stashNewPerformerFilterButton/stashNewPerformerFilterButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashNewPerformerFilterButton/stashNewPerformerFilterButton.js -------------------------------------------------------------------------------- /plugins/stashNewPerformerFilterButton/stashNewPerformerFilterButton.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashNewPerformerFilterButton/stashNewPerformerFilterButton.yml -------------------------------------------------------------------------------- /plugins/stashOpenMediaPlayer/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashOpenMediaPlayer/log.py -------------------------------------------------------------------------------- /plugins/stashOpenMediaPlayer/stashOpenMediaPlayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashOpenMediaPlayer/stashOpenMediaPlayer.js -------------------------------------------------------------------------------- /plugins/stashOpenMediaPlayer/stashOpenMediaPlayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashOpenMediaPlayer/stashOpenMediaPlayer.py -------------------------------------------------------------------------------- /plugins/stashOpenMediaPlayer/stashOpenMediaPlayer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashOpenMediaPlayer/stashOpenMediaPlayer.yml -------------------------------------------------------------------------------- /plugins/stashPerformerAuditTaskButton/audit_performer_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashPerformerAuditTaskButton/audit_performer_urls.py -------------------------------------------------------------------------------- /plugins/stashPerformerAuditTaskButton/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashPerformerAuditTaskButton/log.py -------------------------------------------------------------------------------- /plugins/stashPerformerAuditTaskButton/performer_url_regexes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashPerformerAuditTaskButton/performer_url_regexes.txt -------------------------------------------------------------------------------- /plugins/stashPerformerAuditTaskButton/requirements.txt: -------------------------------------------------------------------------------- 1 | requests==2.30.0 2 | pystashlib==0.5.0 3 | -------------------------------------------------------------------------------- /plugins/stashPerformerAuditTaskButton/stashPerformerAuditTaskButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashPerformerAuditTaskButton/stashPerformerAuditTaskButton.js -------------------------------------------------------------------------------- /plugins/stashPerformerAuditTaskButton/stashPerformerAuditTaskButton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashPerformerAuditTaskButton/stashPerformerAuditTaskButton.py -------------------------------------------------------------------------------- /plugins/stashPerformerAuditTaskButton/stashPerformerAuditTaskButton.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashPerformerAuditTaskButton/stashPerformerAuditTaskButton.yml -------------------------------------------------------------------------------- /plugins/stashPerformerCustomFields/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashPerformerCustomFields/README.md -------------------------------------------------------------------------------- /plugins/stashPerformerCustomFields/performer_details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashPerformerCustomFields/performer_details.py -------------------------------------------------------------------------------- /plugins/stashPerformerCustomFields/requirements.txt: -------------------------------------------------------------------------------- 1 | requests==2.30.0 2 | pystashlib==0.5.0 3 | -------------------------------------------------------------------------------- /plugins/stashPerformerCustomFields/stashPerformerCustomFields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashPerformerCustomFields/stashPerformerCustomFields.js -------------------------------------------------------------------------------- /plugins/stashPerformerCustomFields/stashPerformerCustomFields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashPerformerCustomFields/stashPerformerCustomFields.py -------------------------------------------------------------------------------- /plugins/stashPerformerCustomFields/stashPerformerCustomFields.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashPerformerCustomFields/stashPerformerCustomFields.yml -------------------------------------------------------------------------------- /plugins/stashPerformerImageCropper/stashPerformerImageCropper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashPerformerImageCropper/stashPerformerImageCropper.js -------------------------------------------------------------------------------- /plugins/stashPerformerImageCropper/stashPerformerImageCropper.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashPerformerImageCropper/stashPerformerImageCropper.yml -------------------------------------------------------------------------------- /plugins/stashPerformerMarkersTab/stashPerformerMarkersTab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashPerformerMarkersTab/stashPerformerMarkersTab.js -------------------------------------------------------------------------------- /plugins/stashPerformerMarkersTab/stashPerformerMarkersTab.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashPerformerMarkersTab/stashPerformerMarkersTab.yml -------------------------------------------------------------------------------- /plugins/stashPerformerTaggerAdditions/stashPerformerTaggerAdditions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashPerformerTaggerAdditions/stashPerformerTaggerAdditions.js -------------------------------------------------------------------------------- /plugins/stashPerformerTaggerAdditions/stashPerformerTaggerAdditions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashPerformerTaggerAdditions/stashPerformerTaggerAdditions.yml -------------------------------------------------------------------------------- /plugins/stashPerformerURLSearchbox/stashPerformerURLSearchbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashPerformerURLSearchbox/stashPerformerURLSearchbox.js -------------------------------------------------------------------------------- /plugins/stashPerformerURLSearchbox/stashPerformerURLSearchbox.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashPerformerURLSearchbox/stashPerformerURLSearchbox.yml -------------------------------------------------------------------------------- /plugins/stashSceneTaggerAdditions/stashSceneTaggerAdditions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashSceneTaggerAdditions/stashSceneTaggerAdditions.js -------------------------------------------------------------------------------- /plugins/stashSceneTaggerAdditions/stashSceneTaggerAdditions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashSceneTaggerAdditions/stashSceneTaggerAdditions.yml -------------------------------------------------------------------------------- /plugins/stashSceneTaggerColorizer/stashSceneTaggerColorizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashSceneTaggerColorizer/stashSceneTaggerColorizer.js -------------------------------------------------------------------------------- /plugins/stashSceneTaggerColorizer/stashSceneTaggerColorizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashSceneTaggerColorizer/stashSceneTaggerColorizer.yml -------------------------------------------------------------------------------- /plugins/stashSceneTaggerDraftSubmit/stashSceneTaggerDraftSubmit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashSceneTaggerDraftSubmit/stashSceneTaggerDraftSubmit.js -------------------------------------------------------------------------------- /plugins/stashSceneTaggerDraftSubmit/stashSceneTaggerDraftSubmit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashSceneTaggerDraftSubmit/stashSceneTaggerDraftSubmit.yml -------------------------------------------------------------------------------- /plugins/stashSetStashboxFavoritePerformers/favorite_performers_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashSetStashboxFavoritePerformers/favorite_performers_sync.py -------------------------------------------------------------------------------- /plugins/stashSetStashboxFavoritePerformers/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashSetStashboxFavoritePerformers/log.py -------------------------------------------------------------------------------- /plugins/stashSetStashboxFavoritePerformers/requirements.txt: -------------------------------------------------------------------------------- 1 | requests==2.30.0 2 | pystashlib==0.5.0 3 | -------------------------------------------------------------------------------- /plugins/stashSetStashboxFavoritePerformers/stashSetStashboxFavoritePerformers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashSetStashboxFavoritePerformers/stashSetStashboxFavoritePerformers.js -------------------------------------------------------------------------------- /plugins/stashSetStashboxFavoritePerformers/stashSetStashboxFavoritePerformers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashSetStashboxFavoritePerformers/stashSetStashboxFavoritePerformers.py -------------------------------------------------------------------------------- /plugins/stashSetStashboxFavoritePerformers/stashSetStashboxFavoritePerformers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashSetStashboxFavoritePerformers/stashSetStashboxFavoritePerformers.yml -------------------------------------------------------------------------------- /plugins/stashStashIDIcon/stashStashIDIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashStashIDIcon/stashStashIDIcon.js -------------------------------------------------------------------------------- /plugins/stashStashIDIcon/stashStashIDIcon.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashStashIDIcon/stashStashIDIcon.yml -------------------------------------------------------------------------------- /plugins/stashStashIDInput/stashStashIDInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashStashIDInput/stashStashIDInput.js -------------------------------------------------------------------------------- /plugins/stashStashIDInput/stashStashIDInput.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashStashIDInput/stashStashIDInput.yml -------------------------------------------------------------------------------- /plugins/stashStashboxSceneCount/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashStashboxSceneCount/log.py -------------------------------------------------------------------------------- /plugins/stashStashboxSceneCount/requirements.txt: -------------------------------------------------------------------------------- 1 | requests==2.30.0 2 | pystashlib==0.5.0 3 | -------------------------------------------------------------------------------- /plugins/stashStashboxSceneCount/stashStashboxSceneCount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashStashboxSceneCount/stashStashboxSceneCount.js -------------------------------------------------------------------------------- /plugins/stashStashboxSceneCount/stashStashboxSceneCount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashStashboxSceneCount/stashStashboxSceneCount.py -------------------------------------------------------------------------------- /plugins/stashStashboxSceneCount/stashStashboxSceneCount.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashStashboxSceneCount/stashStashboxSceneCount.yml -------------------------------------------------------------------------------- /plugins/stashStashboxSceneCount/stashbox_scene_counts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashStashboxSceneCount/stashbox_scene_counts.py -------------------------------------------------------------------------------- /plugins/stashStats/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashStats/README.md -------------------------------------------------------------------------------- /plugins/stashStats/config.default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashStats/config.default.json -------------------------------------------------------------------------------- /plugins/stashStats/stashStats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashStats/stashStats.js -------------------------------------------------------------------------------- /plugins/stashStats/stashStats.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashStats/stashStats.yml -------------------------------------------------------------------------------- /plugins/stashTagImageCropper/stashTagImageCropper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashTagImageCropper/stashTagImageCropper.js -------------------------------------------------------------------------------- /plugins/stashTagImageCropper/stashTagImageCropper.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashTagImageCropper/stashTagImageCropper.yml -------------------------------------------------------------------------------- /plugins/stashUserscriptLibrary7dJx1qP/stashUserscriptLibrary7dJx1qP.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashUserscriptLibrary7dJx1qP/stashUserscriptLibrary7dJx1qP.js -------------------------------------------------------------------------------- /plugins/stashUserscriptLibrary7dJx1qP/stashUserscriptLibrary7dJx1qP.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashUserscriptLibrary7dJx1qP/stashUserscriptLibrary7dJx1qP.yml -------------------------------------------------------------------------------- /plugins/stashVideoPlayerABLoopTimeInput/stashVideoPlayerABLoopTimeInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashVideoPlayerABLoopTimeInput/stashVideoPlayerABLoopTimeInput.js -------------------------------------------------------------------------------- /plugins/stashVideoPlayerABLoopTimeInput/stashVideoPlayerABLoopTimeInput.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7dJx1qP/stash-plugins/HEAD/plugins/stashVideoPlayerABLoopTimeInput/stashVideoPlayerABLoopTimeInput.yml --------------------------------------------------------------------------------