├── .editorconfig ├── .github └── workflows │ ├── deploy.yml │ └── validate.yml ├── .gitignore ├── .vscode ├── extensions.json └── settings.json ├── LICENSE ├── README.md ├── archive ├── README.md ├── renamerOnUpdate │ ├── .gitignore │ ├── README.md │ ├── log.py │ ├── renamerOnUpdate.py │ ├── renamerOnUpdate.yml │ └── renamerOnUpdate_config.py ├── stashRealbooru │ ├── stash-realbooru.css │ ├── stash-realbooru.js │ └── stash-realbooru.yml └── visage │ ├── visage.css │ ├── visage.js │ └── visage.yml ├── package.json ├── plugins ├── AITagger │ ├── README.md │ ├── ai_server.py │ ├── ai_tagger.py │ ├── ai_tagger.yml │ ├── ai_video_result.py │ ├── config.py │ ├── media_handler.py │ ├── requirements.txt │ └── utility.py ├── AdulttimeInteractiveDL │ ├── AdulttimeInteractiveDL.py │ ├── AdulttimeInteractiveDL.yml │ ├── README.md │ └── requirements.txt ├── AudioPlayer │ ├── AudioPlayer.css │ ├── AudioPlayer.js │ ├── AudioPlayer.yml │ └── README.md ├── AudioPlayerLite │ ├── AudioPlayerLite.css │ ├── AudioPlayerLite.js │ ├── AudioPlayerLite.yml │ └── README.md ├── CommunityScriptsUILibrary │ ├── CommunityScriptsUILibrary.yml │ ├── README.md │ └── cs-ui-lib.js ├── DateParser │ ├── README.md │ ├── date_parser.py │ ├── date_parser.yml │ └── requirements.txt ├── DupFileManager │ ├── .gitignore │ ├── DupFileManager.css │ ├── DupFileManager.css.map │ ├── DupFileManager.js │ ├── DupFileManager.js.map │ ├── DupFileManager.py │ ├── DupFileManager.yml │ ├── DupFileManager_config.py │ ├── DupFileManager_report_config.py │ ├── ModulesValidate.py │ ├── README.md │ ├── StashPluginHelper.py │ ├── advance_options.html │ └── requirements.txt ├── ExtraPerformerInfo │ ├── README.md │ ├── extraPerformerInfo.py │ └── extraPerformerInfo.yml ├── FileMonitor │ ├── ModulesValidate.py │ ├── README.md │ ├── StashPluginHelper.py │ ├── filemonitor.js │ ├── filemonitor.py │ ├── filemonitor.yml │ ├── filemonitor_config.py │ ├── filemonitor_self_unit_test.py │ ├── filemonitor_task_examples.py │ ├── requirements.txt │ └── version_history │ │ └── README.md ├── LocalVisage │ ├── .gitignore │ ├── Dockerfile │ ├── LocalVisage.py │ ├── LocalVisage.yml │ ├── docker-compose.yaml │ ├── frontend.css │ ├── frontend.js │ ├── readme.md │ ├── requirements.txt │ └── stashface │ │ ├── app.py │ │ ├── models │ │ ├── __init__.py │ │ ├── data_manager.py │ │ ├── face_recognition.py │ │ └── image_processor.py │ │ ├── utils │ │ ├── __init__.py │ │ └── vtt_parser.py │ │ └── web │ │ ├── __init__.py │ │ └── interface.py ├── PlexSync │ ├── PlexSync.py │ ├── PlexSync.yml │ ├── README.md │ ├── TODO.md │ └── requirements.txt ├── PythonDepManager │ ├── PythonDepManager.yml │ ├── README.md │ ├── __init__.py │ ├── deps.py │ ├── flush.py │ └── log.py ├── PythonToolsInstaller │ ├── PythonToolsInstaller.py │ ├── PythonToolsInstaller.yml │ └── packages │ │ └── stashtools.txt ├── RenameFile │ ├── ModulesValidate.py │ ├── README.md │ ├── StashPluginHelper.py │ ├── openedFile.py │ ├── renamefile.css │ ├── renamefile.js │ ├── renamefile.py │ ├── renamefile.yml │ ├── renamefile_settings.py │ ├── requirements.txt │ └── version_history │ │ └── README.md ├── SecondaryPerformerImage │ ├── README.md │ ├── SecondaryPerformerImage.css │ ├── SecondaryPerformerImage.js │ └── SecondaryPerformerImage.yml ├── StashRandomButton │ ├── LICENSE.md │ ├── README.md │ ├── random_button.css │ ├── random_button.js │ └── random_button.yml ├── TPDBMarkers │ ├── README.md │ ├── TPDBMarkers.yml │ ├── requirements.txt │ └── tpdbMarkers.py ├── ThumbPreviews │ ├── README.md │ ├── ThumbPreviews.js │ └── ThumbPreviews.yml ├── VideoBanner │ ├── README.md │ ├── VideoBanner.js │ └── VideoBanner.yml ├── VideoScrollWheel │ ├── README.md │ ├── VideoScrollWheel.js │ └── VideoScrollWheel.yml ├── additionalFilesDeleter │ ├── README.md │ ├── deleter.py │ ├── deleter.yml │ └── requirements.txt ├── audio-transcodes │ ├── README.md │ ├── audio-transcodes.py │ └── audio-transcodes.yml ├── bulkImageScrape │ ├── BulkImageScrape.yml │ ├── README.md │ ├── bulkImageScrape.py │ ├── requirements.txt │ └── res │ │ ├── running.png │ │ ├── settings.png │ │ ├── task.png │ │ ├── valid_image_scraper.png │ │ └── valid_scraper_id.png ├── chooseYourAdventurePlayer │ ├── README.md │ ├── Sample │ │ └── 1234 │ │ │ ├── choices │ │ │ ├── 0.json │ │ │ ├── 1a.json │ │ │ ├── 1b-e.json │ │ │ ├── 1b.json │ │ │ ├── 2-e.json │ │ │ └── 2.json │ │ │ ├── images │ │ │ ├── bad.jpg │ │ │ ├── end-screen.png │ │ │ ├── good.jpg │ │ │ ├── poster-1.png │ │ │ └── poster-2.png │ │ │ └── videos │ │ │ ├── Scene0.mp4 │ │ │ ├── Scene1a.mp4 │ │ │ ├── Scene1b.mp4 │ │ │ ├── Scene2A-1.mp4 │ │ │ ├── Scene2A-2.mp4 │ │ │ ├── Scene2A.mp4 │ │ │ └── Scene2B.mp4 │ └── chooseYourAdventurePlayer.yml ├── cjCardTweaks │ ├── README.md │ ├── cjCardTweaks.js │ └── cjCardTweaks.yml ├── comicInfoExtractor │ ├── README.md │ ├── comicInfoExtractor.py │ ├── comicInfoExtractor.yml │ ├── config.yml │ └── requirements.txt ├── defaultDataForPath │ ├── README.md │ ├── defaultDataForPath.js │ └── defaultDataForPath.yml ├── dupeMarker │ ├── README.md │ ├── dupeMarker.py │ ├── dupeMarker.yml │ └── requirements.txt ├── e621_tagger │ ├── README.md │ ├── e621_tagger.py │ ├── e621_tagger.yml │ └── requirements.txt ├── externalLinksEnhanced │ ├── CHANGELOG.md │ ├── README.md │ ├── custom │ │ ├── bluesky.svg │ │ ├── custom.json │ │ └── onlyfans.svg │ ├── externalLinksEnhanced.css │ ├── externalLinksEnhanced.js │ └── externalLinksEnhanced.yml ├── filenameParser │ ├── README.md │ ├── filenameParser.js │ └── filenameParser.yml ├── funscriptMarkers │ ├── README.md │ ├── funscriptMarkers.py │ └── funscriptMarkers.yml ├── hotCards │ ├── README.md │ ├── assets │ │ ├── default.png │ │ ├── gold.png │ │ ├── holo.png │ │ ├── hot.png │ │ └── illusion.webp │ ├── hotCards.css │ ├── hotCards.js │ ├── hotCards.yml │ └── utils │ │ ├── configurationHandler.js │ │ ├── fetchInterceptor.js │ │ ├── helpers.js │ │ └── stashHandler.js ├── imageGalleryNavigation │ ├── README.md │ ├── imageGalleryNavigation.css │ ├── imageGalleryNavigation.js │ └── imageGalleryNavigation.yml ├── image_date_from_metadata │ ├── README.md │ ├── image_date_from_metadata.py │ └── image_date_from_metadata.yml ├── markerDeleteButton │ ├── README.md │ ├── markerDeleteButton.css │ ├── markerDeleteButton.js │ └── markerDeleteButton.yml ├── markerTagToScene │ ├── README.md │ ├── markerTagToScene.js │ └── markerTagToScene.yml ├── miscTags │ ├── README.md │ ├── miscTags.py │ └── miscTags.yml ├── nfoSceneParser │ ├── README.md │ ├── abstractParser.py │ ├── config.py │ ├── log.py │ ├── nfoParser.py │ ├── nfoSceneParser.py │ ├── nfoSceneParser.yml │ ├── reParser.py │ └── stashInterface.py ├── pathParser │ ├── README.md │ ├── pathParser.js │ └── pathParser.yml ├── performerStashboxUrlToID │ ├── README.md │ ├── performerStashboxUrlToID.py │ └── performerStashboxUrlToID.yml ├── sceneCoverCropper │ ├── README.md │ ├── sceneCoverCropper.js │ └── sceneCoverCropper.yml ├── scenePageRememberStates │ ├── README.md │ ├── scenePageRememberStates.js │ └── scenePageRememberStates.yml ├── setPerformersFromTags │ ├── README.md │ ├── setPerformersFromTags.js │ └── setPerformersFromTags.yml ├── setSceneCoverFromFile │ ├── README.md │ ├── set_cover.py │ └── set_scene_cover.yml ├── starIdentifier │ ├── README.md │ ├── log.py │ ├── requirements.txt │ ├── star_identifier.py │ ├── star_identifier.yml │ ├── star_identifier_config.py │ └── star_identifier_interface.py ├── stashAI │ ├── README.md │ ├── stashai.css │ ├── stashai.js │ └── stashai.yml ├── stashAppAndroidTvCompanion │ ├── README.md │ ├── stashAppAndroidTvCompanion.py │ └── stashAppAndroidTvCompanion.yml ├── stashNotes │ ├── README.md │ ├── stashNotes.js │ └── stashNotes.yml ├── stashNotifications │ ├── README.md │ ├── stashNotifications.css │ ├── stashNotifications.js │ └── stashNotifications.yml ├── stashdb-performer-gallery │ ├── README.md │ ├── requirements.txt │ ├── stashdb-performer-gallery.py │ └── stashdb-performer-gallery.yml ├── stats │ ├── README.md │ ├── stats.js │ └── stats.yml ├── tagCopyPaste │ ├── README.md │ ├── tagCopyPaste.css │ ├── tagCopyPaste.js │ └── tagCopyPaste.yml ├── tagGalleriesFromImages │ ├── requirements.txt │ ├── tagGalleriesFromImages.py │ └── tagGalleriesFromImages.yml ├── tagImagesWithPerfTags │ ├── README.md │ ├── requirements.txt │ ├── tagImagesWithPerfTags.py │ └── tagImagesWithPerfTags.yml ├── tagScenesWithPerfTags │ ├── README.md │ ├── requirements.txt │ ├── tagScenesWithPerfTags.py │ └── tagScenesWithPerfTags.yml ├── themeSwitch │ ├── README.MD │ ├── assets │ │ ├── snippets │ │ │ ├── galleries │ │ │ │ └── galleries-grid-view.css │ │ │ ├── global │ │ │ │ ├── blur-nsfw-images.css │ │ │ │ ├── hide-donate-button.css │ │ │ │ ├── hide-o-count-badges.css │ │ │ │ ├── sticky-tool-bar.css │ │ │ │ └── unblur-nsfw-images-on-mouse-hover.css │ │ │ ├── images │ │ │ │ ├── disable-lightbox-annimation.css │ │ │ │ └── dont-crop-preview-thumbnails.css │ │ │ ├── movies │ │ │ │ ├── desktop-better-layout-larger.css │ │ │ │ └── desktop-better-layout-regular.css │ │ │ ├── performers │ │ │ │ ├── move-tag-field-to-top.css │ │ │ │ ├── performer-image-as-backdrop.css │ │ │ │ └── show-entire-performer-image.css │ │ │ ├── scenes │ │ │ │ ├── adjust-mouse-wall-mode.css │ │ │ │ ├── disable-zoom-wall-mode.css │ │ │ │ ├── hide-scene-Scrubber.css │ │ │ │ ├── hide-scene-specs.css │ │ │ │ ├── hide-studio-logo.css │ │ │ │ ├── hide-truncated-text.css │ │ │ │ ├── longer-string-studio.css │ │ │ │ ├── show-extra-info.css │ │ │ │ ├── swap-studio-res-duration.css │ │ │ │ └── tags-list-sess-width.css │ │ │ ├── studios │ │ │ │ ├── different-studio-cards-layout.css │ │ │ │ └── more-studios-row.css │ │ │ └── tags │ │ │ │ ├── alternative-tag-layout.css │ │ │ │ ├── different-tag-cards.css │ │ │ │ ├── hide-tag-images.css │ │ │ │ └── sub-tag-exolorer.css │ │ └── themes │ │ │ └── materialize │ │ │ ├── source.txt │ │ │ └── stash-theme.css │ ├── themeSwitch.yml │ ├── themeSwitchCSS.js │ ├── themeSwitchMain.js │ └── themeSwtichDefault.css ├── timestampTrade │ ├── README.md │ ├── requirements.txt │ ├── timestampTrade.py │ └── timestampTrade.yml ├── titleFromFilename │ ├── README.md │ ├── config.py │ ├── graphql.py │ ├── log.py │ ├── requirements.txt │ ├── titleFromFilename.py │ └── titleFromFilename.yml ├── untagRedundantTags │ ├── README.md │ ├── requirements.txt │ ├── untagRedundantTags.py │ └── untagRedundantTags.yml └── videoChapterMarkers │ ├── README.md │ ├── requirements.txt │ ├── videoChapterMarkers.py │ └── videoChapterMarkers.yml ├── schema └── plugin.schema.json ├── scripts ├── Sqlite_Renamer │ ├── README.md │ ├── Stash_Sqlite_Renamer.py │ └── requirements.txt ├── kodi-helper │ ├── README.md │ ├── config.py │ └── kodi-helper.py └── stash-watcher │ ├── Dockerfile │ ├── README.md │ ├── config.toml │ ├── defaults.toml │ ├── requirements.txt │ └── watcher.py ├── themes ├── README.md ├── Theme-BlackHole │ ├── README.md │ ├── Theme-BlackHole.css │ └── Theme-BlackHole.yml ├── Theme-ColorPalette │ ├── README.md │ ├── Theme-ColorPalette.css │ ├── Theme-ColorPalette.js │ └── Theme-ColorPalette.yml ├── Theme-Minimal │ ├── README.md │ ├── Theme-Minimal.yml │ ├── _scrollbars.css │ ├── _theme.css │ ├── assets │ │ └── Outfit-VariableFont_wght.woff2 │ ├── index.css │ ├── inputs.css │ ├── markers-wall.css │ ├── modal.css │ ├── nav-bar.css │ ├── player.css │ ├── popover.css │ ├── reset-scrollbars.js │ ├── scene-tagger.css │ ├── scenes.css │ ├── settings.css │ ├── shared.css │ ├── skeleton.css │ ├── stats.css │ ├── studio-performer-tagger.css │ ├── studio-tagger.css │ └── studio.css ├── Theme-ModernDark │ ├── README.md │ ├── Theme-ModernDark.css │ └── Theme-ModernDark.yml ├── Theme-NeonDark │ ├── README.md │ ├── Theme-NeonDark.css │ └── Theme-NeonDark.yml ├── Theme-Night │ ├── README.md │ ├── Theme-Night.css │ └── Theme-Night.yml ├── Theme-Plex │ ├── README.md │ ├── Theme-Plex.css │ └── Theme-Plex.yml ├── Theme-PornHub │ ├── README.md │ ├── Theme-PornHub.css │ └── Theme-PornHub.yml ├── Theme-Pulsar │ ├── README.md │ ├── Theme-Pulsar.css │ └── Theme-Pulsar.yml ├── Theme-PulsarLight │ ├── README.md │ ├── Theme-PulsarLight.css │ └── Theme-PulsarLight.yml └── Theme-RoundedYellow │ ├── README.md │ ├── Theme-RoundedYellow.css │ └── Theme-RoundedYellow.yml ├── userscripts ├── FansDB_Submission_Helper │ ├── README.md │ └── fansdb_submission_helper.user.js └── StashDB_Submission_Helper │ ├── README.md │ └── stashdb_submission_helper.user.js ├── validate.js └── validator ├── index.js ├── package.json ├── plugin.schema.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/validate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/.github/workflows/validate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /_site 2 | node_modules 3 | dist -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/README.md -------------------------------------------------------------------------------- /archive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/archive/README.md -------------------------------------------------------------------------------- /archive/renamerOnUpdate/.gitignore: -------------------------------------------------------------------------------- 1 | config.py -------------------------------------------------------------------------------- /archive/renamerOnUpdate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/archive/renamerOnUpdate/README.md -------------------------------------------------------------------------------- /archive/renamerOnUpdate/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/archive/renamerOnUpdate/log.py -------------------------------------------------------------------------------- /archive/renamerOnUpdate/renamerOnUpdate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/archive/renamerOnUpdate/renamerOnUpdate.py -------------------------------------------------------------------------------- /archive/renamerOnUpdate/renamerOnUpdate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/archive/renamerOnUpdate/renamerOnUpdate.yml -------------------------------------------------------------------------------- /archive/renamerOnUpdate/renamerOnUpdate_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/archive/renamerOnUpdate/renamerOnUpdate_config.py -------------------------------------------------------------------------------- /archive/stashRealbooru/stash-realbooru.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/archive/stashRealbooru/stash-realbooru.css -------------------------------------------------------------------------------- /archive/stashRealbooru/stash-realbooru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/archive/stashRealbooru/stash-realbooru.js -------------------------------------------------------------------------------- /archive/stashRealbooru/stash-realbooru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/archive/stashRealbooru/stash-realbooru.yml -------------------------------------------------------------------------------- /archive/visage/visage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/archive/visage/visage.css -------------------------------------------------------------------------------- /archive/visage/visage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/archive/visage/visage.js -------------------------------------------------------------------------------- /archive/visage/visage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/archive/visage/visage.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/package.json -------------------------------------------------------------------------------- /plugins/AITagger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/AITagger/README.md -------------------------------------------------------------------------------- /plugins/AITagger/ai_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/AITagger/ai_server.py -------------------------------------------------------------------------------- /plugins/AITagger/ai_tagger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/AITagger/ai_tagger.py -------------------------------------------------------------------------------- /plugins/AITagger/ai_tagger.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/AITagger/ai_tagger.yml -------------------------------------------------------------------------------- /plugins/AITagger/ai_video_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/AITagger/ai_video_result.py -------------------------------------------------------------------------------- /plugins/AITagger/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/AITagger/config.py -------------------------------------------------------------------------------- /plugins/AITagger/media_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/AITagger/media_handler.py -------------------------------------------------------------------------------- /plugins/AITagger/requirements.txt: -------------------------------------------------------------------------------- 1 | stashapp-tools 2 | aiohttp 3 | asyncio 4 | pydantic 5 | imageio[ffmpeg] -------------------------------------------------------------------------------- /plugins/AITagger/utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/AITagger/utility.py -------------------------------------------------------------------------------- /plugins/AdulttimeInteractiveDL/AdulttimeInteractiveDL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/AdulttimeInteractiveDL/AdulttimeInteractiveDL.py -------------------------------------------------------------------------------- /plugins/AdulttimeInteractiveDL/AdulttimeInteractiveDL.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/AdulttimeInteractiveDL/AdulttimeInteractiveDL.yml -------------------------------------------------------------------------------- /plugins/AdulttimeInteractiveDL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/AdulttimeInteractiveDL/README.md -------------------------------------------------------------------------------- /plugins/AdulttimeInteractiveDL/requirements.txt: -------------------------------------------------------------------------------- 1 | stashapp-tools>=0.2.33 -------------------------------------------------------------------------------- /plugins/AudioPlayer/AudioPlayer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/AudioPlayer/AudioPlayer.css -------------------------------------------------------------------------------- /plugins/AudioPlayer/AudioPlayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/AudioPlayer/AudioPlayer.js -------------------------------------------------------------------------------- /plugins/AudioPlayer/AudioPlayer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/AudioPlayer/AudioPlayer.yml -------------------------------------------------------------------------------- /plugins/AudioPlayer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/AudioPlayer/README.md -------------------------------------------------------------------------------- /plugins/AudioPlayerLite/AudioPlayerLite.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/AudioPlayerLite/AudioPlayerLite.css -------------------------------------------------------------------------------- /plugins/AudioPlayerLite/AudioPlayerLite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/AudioPlayerLite/AudioPlayerLite.js -------------------------------------------------------------------------------- /plugins/AudioPlayerLite/AudioPlayerLite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/AudioPlayerLite/AudioPlayerLite.yml -------------------------------------------------------------------------------- /plugins/AudioPlayerLite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/AudioPlayerLite/README.md -------------------------------------------------------------------------------- /plugins/CommunityScriptsUILibrary/CommunityScriptsUILibrary.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/CommunityScriptsUILibrary/CommunityScriptsUILibrary.yml -------------------------------------------------------------------------------- /plugins/CommunityScriptsUILibrary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/CommunityScriptsUILibrary/README.md -------------------------------------------------------------------------------- /plugins/CommunityScriptsUILibrary/cs-ui-lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/CommunityScriptsUILibrary/cs-ui-lib.js -------------------------------------------------------------------------------- /plugins/DateParser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/DateParser/README.md -------------------------------------------------------------------------------- /plugins/DateParser/date_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/DateParser/date_parser.py -------------------------------------------------------------------------------- /plugins/DateParser/date_parser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/DateParser/date_parser.yml -------------------------------------------------------------------------------- /plugins/DateParser/requirements.txt: -------------------------------------------------------------------------------- 1 | dateparser>=1.1.3 2 | stashapp-tools>=0.2.17 -------------------------------------------------------------------------------- /plugins/DupFileManager/.gitignore: -------------------------------------------------------------------------------- 1 | *.log -------------------------------------------------------------------------------- /plugins/DupFileManager/DupFileManager.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/DupFileManager/DupFileManager.css -------------------------------------------------------------------------------- /plugins/DupFileManager/DupFileManager.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/DupFileManager/DupFileManager.css.map -------------------------------------------------------------------------------- /plugins/DupFileManager/DupFileManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/DupFileManager/DupFileManager.js -------------------------------------------------------------------------------- /plugins/DupFileManager/DupFileManager.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/DupFileManager/DupFileManager.js.map -------------------------------------------------------------------------------- /plugins/DupFileManager/DupFileManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/DupFileManager/DupFileManager.py -------------------------------------------------------------------------------- /plugins/DupFileManager/DupFileManager.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/DupFileManager/DupFileManager.yml -------------------------------------------------------------------------------- /plugins/DupFileManager/DupFileManager_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/DupFileManager/DupFileManager_config.py -------------------------------------------------------------------------------- /plugins/DupFileManager/DupFileManager_report_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/DupFileManager/DupFileManager_report_config.py -------------------------------------------------------------------------------- /plugins/DupFileManager/ModulesValidate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/DupFileManager/ModulesValidate.py -------------------------------------------------------------------------------- /plugins/DupFileManager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/DupFileManager/README.md -------------------------------------------------------------------------------- /plugins/DupFileManager/StashPluginHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/DupFileManager/StashPluginHelper.py -------------------------------------------------------------------------------- /plugins/DupFileManager/advance_options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/DupFileManager/advance_options.html -------------------------------------------------------------------------------- /plugins/DupFileManager/requirements.txt: -------------------------------------------------------------------------------- 1 | stashapp-tools >= 0.2.50 2 | requests 3 | Send2Trash -------------------------------------------------------------------------------- /plugins/ExtraPerformerInfo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/ExtraPerformerInfo/README.md -------------------------------------------------------------------------------- /plugins/ExtraPerformerInfo/extraPerformerInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/ExtraPerformerInfo/extraPerformerInfo.py -------------------------------------------------------------------------------- /plugins/ExtraPerformerInfo/extraPerformerInfo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/ExtraPerformerInfo/extraPerformerInfo.yml -------------------------------------------------------------------------------- /plugins/FileMonitor/ModulesValidate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/FileMonitor/ModulesValidate.py -------------------------------------------------------------------------------- /plugins/FileMonitor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/FileMonitor/README.md -------------------------------------------------------------------------------- /plugins/FileMonitor/StashPluginHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/FileMonitor/StashPluginHelper.py -------------------------------------------------------------------------------- /plugins/FileMonitor/filemonitor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/FileMonitor/filemonitor.js -------------------------------------------------------------------------------- /plugins/FileMonitor/filemonitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/FileMonitor/filemonitor.py -------------------------------------------------------------------------------- /plugins/FileMonitor/filemonitor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/FileMonitor/filemonitor.yml -------------------------------------------------------------------------------- /plugins/FileMonitor/filemonitor_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/FileMonitor/filemonitor_config.py -------------------------------------------------------------------------------- /plugins/FileMonitor/filemonitor_self_unit_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/FileMonitor/filemonitor_self_unit_test.py -------------------------------------------------------------------------------- /plugins/FileMonitor/filemonitor_task_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/FileMonitor/filemonitor_task_examples.py -------------------------------------------------------------------------------- /plugins/FileMonitor/requirements.txt: -------------------------------------------------------------------------------- 1 | stashapp-tools >= 0.2.50 2 | requests 3 | watchdog 4 | schedule 5 | pyyaml -------------------------------------------------------------------------------- /plugins/FileMonitor/version_history/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/FileMonitor/version_history/README.md -------------------------------------------------------------------------------- /plugins/LocalVisage/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/LocalVisage/.gitignore -------------------------------------------------------------------------------- /plugins/LocalVisage/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/LocalVisage/Dockerfile -------------------------------------------------------------------------------- /plugins/LocalVisage/LocalVisage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/LocalVisage/LocalVisage.py -------------------------------------------------------------------------------- /plugins/LocalVisage/LocalVisage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/LocalVisage/LocalVisage.yml -------------------------------------------------------------------------------- /plugins/LocalVisage/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/LocalVisage/docker-compose.yaml -------------------------------------------------------------------------------- /plugins/LocalVisage/frontend.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/LocalVisage/frontend.css -------------------------------------------------------------------------------- /plugins/LocalVisage/frontend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/LocalVisage/frontend.js -------------------------------------------------------------------------------- /plugins/LocalVisage/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/LocalVisage/readme.md -------------------------------------------------------------------------------- /plugins/LocalVisage/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/LocalVisage/requirements.txt -------------------------------------------------------------------------------- /plugins/LocalVisage/stashface/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/LocalVisage/stashface/app.py -------------------------------------------------------------------------------- /plugins/LocalVisage/stashface/models/__init__.py: -------------------------------------------------------------------------------- 1 | # models package -------------------------------------------------------------------------------- /plugins/LocalVisage/stashface/models/data_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/LocalVisage/stashface/models/data_manager.py -------------------------------------------------------------------------------- /plugins/LocalVisage/stashface/models/face_recognition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/LocalVisage/stashface/models/face_recognition.py -------------------------------------------------------------------------------- /plugins/LocalVisage/stashface/models/image_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/LocalVisage/stashface/models/image_processor.py -------------------------------------------------------------------------------- /plugins/LocalVisage/stashface/utils/__init__.py: -------------------------------------------------------------------------------- 1 | # utils package -------------------------------------------------------------------------------- /plugins/LocalVisage/stashface/utils/vtt_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/LocalVisage/stashface/utils/vtt_parser.py -------------------------------------------------------------------------------- /plugins/LocalVisage/stashface/web/__init__.py: -------------------------------------------------------------------------------- 1 | # web package -------------------------------------------------------------------------------- /plugins/LocalVisage/stashface/web/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/LocalVisage/stashface/web/interface.py -------------------------------------------------------------------------------- /plugins/PlexSync/PlexSync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/PlexSync/PlexSync.py -------------------------------------------------------------------------------- /plugins/PlexSync/PlexSync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/PlexSync/PlexSync.yml -------------------------------------------------------------------------------- /plugins/PlexSync/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/PlexSync/README.md -------------------------------------------------------------------------------- /plugins/PlexSync/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/PlexSync/TODO.md -------------------------------------------------------------------------------- /plugins/PlexSync/requirements.txt: -------------------------------------------------------------------------------- 1 | stashapp-tools 2 | unidecode 3 | requests 4 | -------------------------------------------------------------------------------- /plugins/PythonDepManager/PythonDepManager.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/PythonDepManager/PythonDepManager.yml -------------------------------------------------------------------------------- /plugins/PythonDepManager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/PythonDepManager/README.md -------------------------------------------------------------------------------- /plugins/PythonDepManager/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/PythonDepManager/__init__.py -------------------------------------------------------------------------------- /plugins/PythonDepManager/deps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/PythonDepManager/deps.py -------------------------------------------------------------------------------- /plugins/PythonDepManager/flush.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/PythonDepManager/flush.py -------------------------------------------------------------------------------- /plugins/PythonDepManager/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/PythonDepManager/log.py -------------------------------------------------------------------------------- /plugins/PythonToolsInstaller/PythonToolsInstaller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/PythonToolsInstaller/PythonToolsInstaller.py -------------------------------------------------------------------------------- /plugins/PythonToolsInstaller/PythonToolsInstaller.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/PythonToolsInstaller/PythonToolsInstaller.yml -------------------------------------------------------------------------------- /plugins/PythonToolsInstaller/packages/stashtools.txt: -------------------------------------------------------------------------------- 1 | stashapp-tools 2 | -------------------------------------------------------------------------------- /plugins/RenameFile/ModulesValidate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/RenameFile/ModulesValidate.py -------------------------------------------------------------------------------- /plugins/RenameFile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/RenameFile/README.md -------------------------------------------------------------------------------- /plugins/RenameFile/StashPluginHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/RenameFile/StashPluginHelper.py -------------------------------------------------------------------------------- /plugins/RenameFile/openedFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/RenameFile/openedFile.py -------------------------------------------------------------------------------- /plugins/RenameFile/renamefile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/RenameFile/renamefile.css -------------------------------------------------------------------------------- /plugins/RenameFile/renamefile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/RenameFile/renamefile.js -------------------------------------------------------------------------------- /plugins/RenameFile/renamefile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/RenameFile/renamefile.py -------------------------------------------------------------------------------- /plugins/RenameFile/renamefile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/RenameFile/renamefile.yml -------------------------------------------------------------------------------- /plugins/RenameFile/renamefile_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/RenameFile/renamefile_settings.py -------------------------------------------------------------------------------- /plugins/RenameFile/requirements.txt: -------------------------------------------------------------------------------- 1 | stashapp-tools >= 0.2.50 2 | requests 3 | psutil -------------------------------------------------------------------------------- /plugins/RenameFile/version_history/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/RenameFile/version_history/README.md -------------------------------------------------------------------------------- /plugins/SecondaryPerformerImage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/SecondaryPerformerImage/README.md -------------------------------------------------------------------------------- /plugins/SecondaryPerformerImage/SecondaryPerformerImage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/SecondaryPerformerImage/SecondaryPerformerImage.css -------------------------------------------------------------------------------- /plugins/SecondaryPerformerImage/SecondaryPerformerImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/SecondaryPerformerImage/SecondaryPerformerImage.js -------------------------------------------------------------------------------- /plugins/SecondaryPerformerImage/SecondaryPerformerImage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/SecondaryPerformerImage/SecondaryPerformerImage.yml -------------------------------------------------------------------------------- /plugins/StashRandomButton/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/StashRandomButton/LICENSE.md -------------------------------------------------------------------------------- /plugins/StashRandomButton/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/StashRandomButton/README.md -------------------------------------------------------------------------------- /plugins/StashRandomButton/random_button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/StashRandomButton/random_button.css -------------------------------------------------------------------------------- /plugins/StashRandomButton/random_button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/StashRandomButton/random_button.js -------------------------------------------------------------------------------- /plugins/StashRandomButton/random_button.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/StashRandomButton/random_button.yml -------------------------------------------------------------------------------- /plugins/TPDBMarkers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/TPDBMarkers/README.md -------------------------------------------------------------------------------- /plugins/TPDBMarkers/TPDBMarkers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/TPDBMarkers/TPDBMarkers.yml -------------------------------------------------------------------------------- /plugins/TPDBMarkers/requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | stashapp-tools 3 | -------------------------------------------------------------------------------- /plugins/TPDBMarkers/tpdbMarkers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/TPDBMarkers/tpdbMarkers.py -------------------------------------------------------------------------------- /plugins/ThumbPreviews/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/ThumbPreviews/README.md -------------------------------------------------------------------------------- /plugins/ThumbPreviews/ThumbPreviews.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/ThumbPreviews/ThumbPreviews.js -------------------------------------------------------------------------------- /plugins/ThumbPreviews/ThumbPreviews.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/ThumbPreviews/ThumbPreviews.yml -------------------------------------------------------------------------------- /plugins/VideoBanner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/VideoBanner/README.md -------------------------------------------------------------------------------- /plugins/VideoBanner/VideoBanner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/VideoBanner/VideoBanner.js -------------------------------------------------------------------------------- /plugins/VideoBanner/VideoBanner.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/VideoBanner/VideoBanner.yml -------------------------------------------------------------------------------- /plugins/VideoScrollWheel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/VideoScrollWheel/README.md -------------------------------------------------------------------------------- /plugins/VideoScrollWheel/VideoScrollWheel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/VideoScrollWheel/VideoScrollWheel.js -------------------------------------------------------------------------------- /plugins/VideoScrollWheel/VideoScrollWheel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/VideoScrollWheel/VideoScrollWheel.yml -------------------------------------------------------------------------------- /plugins/additionalFilesDeleter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/additionalFilesDeleter/README.md -------------------------------------------------------------------------------- /plugins/additionalFilesDeleter/deleter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/additionalFilesDeleter/deleter.py -------------------------------------------------------------------------------- /plugins/additionalFilesDeleter/deleter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/additionalFilesDeleter/deleter.yml -------------------------------------------------------------------------------- /plugins/additionalFilesDeleter/requirements.txt: -------------------------------------------------------------------------------- 1 | stashapp-tools==0.2.40 -------------------------------------------------------------------------------- /plugins/audio-transcodes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/audio-transcodes/README.md -------------------------------------------------------------------------------- /plugins/audio-transcodes/audio-transcodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/audio-transcodes/audio-transcodes.py -------------------------------------------------------------------------------- /plugins/audio-transcodes/audio-transcodes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/audio-transcodes/audio-transcodes.yml -------------------------------------------------------------------------------- /plugins/bulkImageScrape/BulkImageScrape.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/bulkImageScrape/BulkImageScrape.yml -------------------------------------------------------------------------------- /plugins/bulkImageScrape/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/bulkImageScrape/README.md -------------------------------------------------------------------------------- /plugins/bulkImageScrape/bulkImageScrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/bulkImageScrape/bulkImageScrape.py -------------------------------------------------------------------------------- /plugins/bulkImageScrape/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/bulkImageScrape/requirements.txt -------------------------------------------------------------------------------- /plugins/bulkImageScrape/res/running.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/bulkImageScrape/res/running.png -------------------------------------------------------------------------------- /plugins/bulkImageScrape/res/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/bulkImageScrape/res/settings.png -------------------------------------------------------------------------------- /plugins/bulkImageScrape/res/task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/bulkImageScrape/res/task.png -------------------------------------------------------------------------------- /plugins/bulkImageScrape/res/valid_image_scraper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/bulkImageScrape/res/valid_image_scraper.png -------------------------------------------------------------------------------- /plugins/bulkImageScrape/res/valid_scraper_id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/bulkImageScrape/res/valid_scraper_id.png -------------------------------------------------------------------------------- /plugins/chooseYourAdventurePlayer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/chooseYourAdventurePlayer/README.md -------------------------------------------------------------------------------- /plugins/chooseYourAdventurePlayer/Sample/1234/choices/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/chooseYourAdventurePlayer/Sample/1234/choices/0.json -------------------------------------------------------------------------------- /plugins/chooseYourAdventurePlayer/Sample/1234/choices/1a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/chooseYourAdventurePlayer/Sample/1234/choices/1a.json -------------------------------------------------------------------------------- /plugins/chooseYourAdventurePlayer/Sample/1234/choices/1b-e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/chooseYourAdventurePlayer/Sample/1234/choices/1b-e.json -------------------------------------------------------------------------------- /plugins/chooseYourAdventurePlayer/Sample/1234/choices/1b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/chooseYourAdventurePlayer/Sample/1234/choices/1b.json -------------------------------------------------------------------------------- /plugins/chooseYourAdventurePlayer/Sample/1234/choices/2-e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/chooseYourAdventurePlayer/Sample/1234/choices/2-e.json -------------------------------------------------------------------------------- /plugins/chooseYourAdventurePlayer/Sample/1234/choices/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/chooseYourAdventurePlayer/Sample/1234/choices/2.json -------------------------------------------------------------------------------- /plugins/chooseYourAdventurePlayer/Sample/1234/images/bad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/chooseYourAdventurePlayer/Sample/1234/images/bad.jpg -------------------------------------------------------------------------------- /plugins/chooseYourAdventurePlayer/Sample/1234/images/end-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/chooseYourAdventurePlayer/Sample/1234/images/end-screen.png -------------------------------------------------------------------------------- /plugins/chooseYourAdventurePlayer/Sample/1234/images/good.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/chooseYourAdventurePlayer/Sample/1234/images/good.jpg -------------------------------------------------------------------------------- /plugins/chooseYourAdventurePlayer/Sample/1234/images/poster-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/chooseYourAdventurePlayer/Sample/1234/images/poster-1.png -------------------------------------------------------------------------------- /plugins/chooseYourAdventurePlayer/Sample/1234/images/poster-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/chooseYourAdventurePlayer/Sample/1234/images/poster-2.png -------------------------------------------------------------------------------- /plugins/chooseYourAdventurePlayer/Sample/1234/videos/Scene0.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/chooseYourAdventurePlayer/Sample/1234/videos/Scene0.mp4 -------------------------------------------------------------------------------- /plugins/chooseYourAdventurePlayer/Sample/1234/videos/Scene1a.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/chooseYourAdventurePlayer/Sample/1234/videos/Scene1a.mp4 -------------------------------------------------------------------------------- /plugins/chooseYourAdventurePlayer/Sample/1234/videos/Scene1b.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/chooseYourAdventurePlayer/Sample/1234/videos/Scene1b.mp4 -------------------------------------------------------------------------------- /plugins/chooseYourAdventurePlayer/Sample/1234/videos/Scene2A-1.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/chooseYourAdventurePlayer/Sample/1234/videos/Scene2A-1.mp4 -------------------------------------------------------------------------------- /plugins/chooseYourAdventurePlayer/Sample/1234/videos/Scene2A-2.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/chooseYourAdventurePlayer/Sample/1234/videos/Scene2A-2.mp4 -------------------------------------------------------------------------------- /plugins/chooseYourAdventurePlayer/Sample/1234/videos/Scene2A.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/chooseYourAdventurePlayer/Sample/1234/videos/Scene2A.mp4 -------------------------------------------------------------------------------- /plugins/chooseYourAdventurePlayer/Sample/1234/videos/Scene2B.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/chooseYourAdventurePlayer/Sample/1234/videos/Scene2B.mp4 -------------------------------------------------------------------------------- /plugins/chooseYourAdventurePlayer/chooseYourAdventurePlayer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/chooseYourAdventurePlayer/chooseYourAdventurePlayer.yml -------------------------------------------------------------------------------- /plugins/cjCardTweaks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/cjCardTweaks/README.md -------------------------------------------------------------------------------- /plugins/cjCardTweaks/cjCardTweaks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/cjCardTweaks/cjCardTweaks.js -------------------------------------------------------------------------------- /plugins/cjCardTweaks/cjCardTweaks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/cjCardTweaks/cjCardTweaks.yml -------------------------------------------------------------------------------- /plugins/comicInfoExtractor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/comicInfoExtractor/README.md -------------------------------------------------------------------------------- /plugins/comicInfoExtractor/comicInfoExtractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/comicInfoExtractor/comicInfoExtractor.py -------------------------------------------------------------------------------- /plugins/comicInfoExtractor/comicInfoExtractor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/comicInfoExtractor/comicInfoExtractor.yml -------------------------------------------------------------------------------- /plugins/comicInfoExtractor/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/comicInfoExtractor/config.yml -------------------------------------------------------------------------------- /plugins/comicInfoExtractor/requirements.txt: -------------------------------------------------------------------------------- 1 | stashapp-tools 2 | pyyaml 3 | -------------------------------------------------------------------------------- /plugins/defaultDataForPath/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/defaultDataForPath/README.md -------------------------------------------------------------------------------- /plugins/defaultDataForPath/defaultDataForPath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/defaultDataForPath/defaultDataForPath.js -------------------------------------------------------------------------------- /plugins/defaultDataForPath/defaultDataForPath.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/defaultDataForPath/defaultDataForPath.yml -------------------------------------------------------------------------------- /plugins/dupeMarker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/dupeMarker/README.md -------------------------------------------------------------------------------- /plugins/dupeMarker/dupeMarker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/dupeMarker/dupeMarker.py -------------------------------------------------------------------------------- /plugins/dupeMarker/dupeMarker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/dupeMarker/dupeMarker.yml -------------------------------------------------------------------------------- /plugins/dupeMarker/requirements.txt: -------------------------------------------------------------------------------- 1 | stashapp-tools -------------------------------------------------------------------------------- /plugins/e621_tagger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/e621_tagger/README.md -------------------------------------------------------------------------------- /plugins/e621_tagger/e621_tagger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/e621_tagger/e621_tagger.py -------------------------------------------------------------------------------- /plugins/e621_tagger/e621_tagger.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/e621_tagger/e621_tagger.yml -------------------------------------------------------------------------------- /plugins/e621_tagger/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/e621_tagger/requirements.txt -------------------------------------------------------------------------------- /plugins/externalLinksEnhanced/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/externalLinksEnhanced/CHANGELOG.md -------------------------------------------------------------------------------- /plugins/externalLinksEnhanced/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/externalLinksEnhanced/README.md -------------------------------------------------------------------------------- /plugins/externalLinksEnhanced/custom/bluesky.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/externalLinksEnhanced/custom/bluesky.svg -------------------------------------------------------------------------------- /plugins/externalLinksEnhanced/custom/custom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/externalLinksEnhanced/custom/custom.json -------------------------------------------------------------------------------- /plugins/externalLinksEnhanced/custom/onlyfans.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/externalLinksEnhanced/custom/onlyfans.svg -------------------------------------------------------------------------------- /plugins/externalLinksEnhanced/externalLinksEnhanced.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/externalLinksEnhanced/externalLinksEnhanced.css -------------------------------------------------------------------------------- /plugins/externalLinksEnhanced/externalLinksEnhanced.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/externalLinksEnhanced/externalLinksEnhanced.js -------------------------------------------------------------------------------- /plugins/externalLinksEnhanced/externalLinksEnhanced.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/externalLinksEnhanced/externalLinksEnhanced.yml -------------------------------------------------------------------------------- /plugins/filenameParser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/filenameParser/README.md -------------------------------------------------------------------------------- /plugins/filenameParser/filenameParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/filenameParser/filenameParser.js -------------------------------------------------------------------------------- /plugins/filenameParser/filenameParser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/filenameParser/filenameParser.yml -------------------------------------------------------------------------------- /plugins/funscriptMarkers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/funscriptMarkers/README.md -------------------------------------------------------------------------------- /plugins/funscriptMarkers/funscriptMarkers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/funscriptMarkers/funscriptMarkers.py -------------------------------------------------------------------------------- /plugins/funscriptMarkers/funscriptMarkers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/funscriptMarkers/funscriptMarkers.yml -------------------------------------------------------------------------------- /plugins/hotCards/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/hotCards/README.md -------------------------------------------------------------------------------- /plugins/hotCards/assets/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/hotCards/assets/default.png -------------------------------------------------------------------------------- /plugins/hotCards/assets/gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/hotCards/assets/gold.png -------------------------------------------------------------------------------- /plugins/hotCards/assets/holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/hotCards/assets/holo.png -------------------------------------------------------------------------------- /plugins/hotCards/assets/hot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/hotCards/assets/hot.png -------------------------------------------------------------------------------- /plugins/hotCards/assets/illusion.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/hotCards/assets/illusion.webp -------------------------------------------------------------------------------- /plugins/hotCards/hotCards.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/hotCards/hotCards.css -------------------------------------------------------------------------------- /plugins/hotCards/hotCards.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/hotCards/hotCards.js -------------------------------------------------------------------------------- /plugins/hotCards/hotCards.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/hotCards/hotCards.yml -------------------------------------------------------------------------------- /plugins/hotCards/utils/configurationHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/hotCards/utils/configurationHandler.js -------------------------------------------------------------------------------- /plugins/hotCards/utils/fetchInterceptor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/hotCards/utils/fetchInterceptor.js -------------------------------------------------------------------------------- /plugins/hotCards/utils/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/hotCards/utils/helpers.js -------------------------------------------------------------------------------- /plugins/hotCards/utils/stashHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/hotCards/utils/stashHandler.js -------------------------------------------------------------------------------- /plugins/imageGalleryNavigation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/imageGalleryNavigation/README.md -------------------------------------------------------------------------------- /plugins/imageGalleryNavigation/imageGalleryNavigation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/imageGalleryNavigation/imageGalleryNavigation.css -------------------------------------------------------------------------------- /plugins/imageGalleryNavigation/imageGalleryNavigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/imageGalleryNavigation/imageGalleryNavigation.js -------------------------------------------------------------------------------- /plugins/imageGalleryNavigation/imageGalleryNavigation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/imageGalleryNavigation/imageGalleryNavigation.yml -------------------------------------------------------------------------------- /plugins/image_date_from_metadata/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/image_date_from_metadata/README.md -------------------------------------------------------------------------------- /plugins/image_date_from_metadata/image_date_from_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/image_date_from_metadata/image_date_from_metadata.py -------------------------------------------------------------------------------- /plugins/image_date_from_metadata/image_date_from_metadata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/image_date_from_metadata/image_date_from_metadata.yml -------------------------------------------------------------------------------- /plugins/markerDeleteButton/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/markerDeleteButton/README.md -------------------------------------------------------------------------------- /plugins/markerDeleteButton/markerDeleteButton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/markerDeleteButton/markerDeleteButton.css -------------------------------------------------------------------------------- /plugins/markerDeleteButton/markerDeleteButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/markerDeleteButton/markerDeleteButton.js -------------------------------------------------------------------------------- /plugins/markerDeleteButton/markerDeleteButton.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/markerDeleteButton/markerDeleteButton.yml -------------------------------------------------------------------------------- /plugins/markerTagToScene/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/markerTagToScene/README.md -------------------------------------------------------------------------------- /plugins/markerTagToScene/markerTagToScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/markerTagToScene/markerTagToScene.js -------------------------------------------------------------------------------- /plugins/markerTagToScene/markerTagToScene.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/markerTagToScene/markerTagToScene.yml -------------------------------------------------------------------------------- /plugins/miscTags/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/miscTags/README.md -------------------------------------------------------------------------------- /plugins/miscTags/miscTags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/miscTags/miscTags.py -------------------------------------------------------------------------------- /plugins/miscTags/miscTags.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/miscTags/miscTags.yml -------------------------------------------------------------------------------- /plugins/nfoSceneParser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/nfoSceneParser/README.md -------------------------------------------------------------------------------- /plugins/nfoSceneParser/abstractParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/nfoSceneParser/abstractParser.py -------------------------------------------------------------------------------- /plugins/nfoSceneParser/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/nfoSceneParser/config.py -------------------------------------------------------------------------------- /plugins/nfoSceneParser/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/nfoSceneParser/log.py -------------------------------------------------------------------------------- /plugins/nfoSceneParser/nfoParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/nfoSceneParser/nfoParser.py -------------------------------------------------------------------------------- /plugins/nfoSceneParser/nfoSceneParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/nfoSceneParser/nfoSceneParser.py -------------------------------------------------------------------------------- /plugins/nfoSceneParser/nfoSceneParser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/nfoSceneParser/nfoSceneParser.yml -------------------------------------------------------------------------------- /plugins/nfoSceneParser/reParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/nfoSceneParser/reParser.py -------------------------------------------------------------------------------- /plugins/nfoSceneParser/stashInterface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/nfoSceneParser/stashInterface.py -------------------------------------------------------------------------------- /plugins/pathParser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/pathParser/README.md -------------------------------------------------------------------------------- /plugins/pathParser/pathParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/pathParser/pathParser.js -------------------------------------------------------------------------------- /plugins/pathParser/pathParser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/pathParser/pathParser.yml -------------------------------------------------------------------------------- /plugins/performerStashboxUrlToID/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/performerStashboxUrlToID/README.md -------------------------------------------------------------------------------- /plugins/performerStashboxUrlToID/performerStashboxUrlToID.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/performerStashboxUrlToID/performerStashboxUrlToID.py -------------------------------------------------------------------------------- /plugins/performerStashboxUrlToID/performerStashboxUrlToID.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/performerStashboxUrlToID/performerStashboxUrlToID.yml -------------------------------------------------------------------------------- /plugins/sceneCoverCropper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/sceneCoverCropper/README.md -------------------------------------------------------------------------------- /plugins/sceneCoverCropper/sceneCoverCropper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/sceneCoverCropper/sceneCoverCropper.js -------------------------------------------------------------------------------- /plugins/sceneCoverCropper/sceneCoverCropper.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/sceneCoverCropper/sceneCoverCropper.yml -------------------------------------------------------------------------------- /plugins/scenePageRememberStates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/scenePageRememberStates/README.md -------------------------------------------------------------------------------- /plugins/scenePageRememberStates/scenePageRememberStates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/scenePageRememberStates/scenePageRememberStates.js -------------------------------------------------------------------------------- /plugins/scenePageRememberStates/scenePageRememberStates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/scenePageRememberStates/scenePageRememberStates.yml -------------------------------------------------------------------------------- /plugins/setPerformersFromTags/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/setPerformersFromTags/README.md -------------------------------------------------------------------------------- /plugins/setPerformersFromTags/setPerformersFromTags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/setPerformersFromTags/setPerformersFromTags.js -------------------------------------------------------------------------------- /plugins/setPerformersFromTags/setPerformersFromTags.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/setPerformersFromTags/setPerformersFromTags.yml -------------------------------------------------------------------------------- /plugins/setSceneCoverFromFile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/setSceneCoverFromFile/README.md -------------------------------------------------------------------------------- /plugins/setSceneCoverFromFile/set_cover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/setSceneCoverFromFile/set_cover.py -------------------------------------------------------------------------------- /plugins/setSceneCoverFromFile/set_scene_cover.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/setSceneCoverFromFile/set_scene_cover.yml -------------------------------------------------------------------------------- /plugins/starIdentifier/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/starIdentifier/README.md -------------------------------------------------------------------------------- /plugins/starIdentifier/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/starIdentifier/log.py -------------------------------------------------------------------------------- /plugins/starIdentifier/requirements.txt: -------------------------------------------------------------------------------- 1 | face_recognition 2 | numpy 3 | requests -------------------------------------------------------------------------------- /plugins/starIdentifier/star_identifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/starIdentifier/star_identifier.py -------------------------------------------------------------------------------- /plugins/starIdentifier/star_identifier.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/starIdentifier/star_identifier.yml -------------------------------------------------------------------------------- /plugins/starIdentifier/star_identifier_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/starIdentifier/star_identifier_config.py -------------------------------------------------------------------------------- /plugins/starIdentifier/star_identifier_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/starIdentifier/star_identifier_interface.py -------------------------------------------------------------------------------- /plugins/stashAI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/stashAI/README.md -------------------------------------------------------------------------------- /plugins/stashAI/stashai.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/stashAI/stashai.css -------------------------------------------------------------------------------- /plugins/stashAI/stashai.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/stashAI/stashai.js -------------------------------------------------------------------------------- /plugins/stashAI/stashai.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/stashAI/stashai.yml -------------------------------------------------------------------------------- /plugins/stashAppAndroidTvCompanion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/stashAppAndroidTvCompanion/README.md -------------------------------------------------------------------------------- /plugins/stashAppAndroidTvCompanion/stashAppAndroidTvCompanion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/stashAppAndroidTvCompanion/stashAppAndroidTvCompanion.py -------------------------------------------------------------------------------- /plugins/stashAppAndroidTvCompanion/stashAppAndroidTvCompanion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/stashAppAndroidTvCompanion/stashAppAndroidTvCompanion.yml -------------------------------------------------------------------------------- /plugins/stashNotes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/stashNotes/README.md -------------------------------------------------------------------------------- /plugins/stashNotes/stashNotes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/stashNotes/stashNotes.js -------------------------------------------------------------------------------- /plugins/stashNotes/stashNotes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/stashNotes/stashNotes.yml -------------------------------------------------------------------------------- /plugins/stashNotifications/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/stashNotifications/README.md -------------------------------------------------------------------------------- /plugins/stashNotifications/stashNotifications.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/stashNotifications/stashNotifications.css -------------------------------------------------------------------------------- /plugins/stashNotifications/stashNotifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/stashNotifications/stashNotifications.js -------------------------------------------------------------------------------- /plugins/stashNotifications/stashNotifications.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/stashNotifications/stashNotifications.yml -------------------------------------------------------------------------------- /plugins/stashdb-performer-gallery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/stashdb-performer-gallery/README.md -------------------------------------------------------------------------------- /plugins/stashdb-performer-gallery/requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | stashapp-tools 3 | -------------------------------------------------------------------------------- /plugins/stashdb-performer-gallery/stashdb-performer-gallery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/stashdb-performer-gallery/stashdb-performer-gallery.py -------------------------------------------------------------------------------- /plugins/stashdb-performer-gallery/stashdb-performer-gallery.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/stashdb-performer-gallery/stashdb-performer-gallery.yml -------------------------------------------------------------------------------- /plugins/stats/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/stats/README.md -------------------------------------------------------------------------------- /plugins/stats/stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/stats/stats.js -------------------------------------------------------------------------------- /plugins/stats/stats.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/stats/stats.yml -------------------------------------------------------------------------------- /plugins/tagCopyPaste/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/tagCopyPaste/README.md -------------------------------------------------------------------------------- /plugins/tagCopyPaste/tagCopyPaste.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/tagCopyPaste/tagCopyPaste.css -------------------------------------------------------------------------------- /plugins/tagCopyPaste/tagCopyPaste.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/tagCopyPaste/tagCopyPaste.js -------------------------------------------------------------------------------- /plugins/tagCopyPaste/tagCopyPaste.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/tagCopyPaste/tagCopyPaste.yml -------------------------------------------------------------------------------- /plugins/tagGalleriesFromImages/requirements.txt: -------------------------------------------------------------------------------- 1 | stashapp-tools 2 | -------------------------------------------------------------------------------- /plugins/tagGalleriesFromImages/tagGalleriesFromImages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/tagGalleriesFromImages/tagGalleriesFromImages.py -------------------------------------------------------------------------------- /plugins/tagGalleriesFromImages/tagGalleriesFromImages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/tagGalleriesFromImages/tagGalleriesFromImages.yml -------------------------------------------------------------------------------- /plugins/tagImagesWithPerfTags/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/tagImagesWithPerfTags/README.md -------------------------------------------------------------------------------- /plugins/tagImagesWithPerfTags/requirements.txt: -------------------------------------------------------------------------------- 1 | stashapp-tools 2 | -------------------------------------------------------------------------------- /plugins/tagImagesWithPerfTags/tagImagesWithPerfTags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/tagImagesWithPerfTags/tagImagesWithPerfTags.py -------------------------------------------------------------------------------- /plugins/tagImagesWithPerfTags/tagImagesWithPerfTags.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/tagImagesWithPerfTags/tagImagesWithPerfTags.yml -------------------------------------------------------------------------------- /plugins/tagScenesWithPerfTags/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/tagScenesWithPerfTags/README.md -------------------------------------------------------------------------------- /plugins/tagScenesWithPerfTags/requirements.txt: -------------------------------------------------------------------------------- 1 | stashapp-tools 2 | -------------------------------------------------------------------------------- /plugins/tagScenesWithPerfTags/tagScenesWithPerfTags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/tagScenesWithPerfTags/tagScenesWithPerfTags.py -------------------------------------------------------------------------------- /plugins/tagScenesWithPerfTags/tagScenesWithPerfTags.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/tagScenesWithPerfTags/tagScenesWithPerfTags.yml -------------------------------------------------------------------------------- /plugins/themeSwitch/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/themeSwitch/README.MD -------------------------------------------------------------------------------- /plugins/themeSwitch/assets/snippets/galleries/galleries-grid-view.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/themeSwitch/assets/snippets/galleries/galleries-grid-view.css -------------------------------------------------------------------------------- /plugins/themeSwitch/assets/snippets/global/blur-nsfw-images.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/themeSwitch/assets/snippets/global/blur-nsfw-images.css -------------------------------------------------------------------------------- /plugins/themeSwitch/assets/snippets/global/hide-donate-button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/themeSwitch/assets/snippets/global/hide-donate-button.css -------------------------------------------------------------------------------- /plugins/themeSwitch/assets/snippets/global/hide-o-count-badges.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/themeSwitch/assets/snippets/global/hide-o-count-badges.css -------------------------------------------------------------------------------- /plugins/themeSwitch/assets/snippets/global/sticky-tool-bar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/themeSwitch/assets/snippets/global/sticky-tool-bar.css -------------------------------------------------------------------------------- /plugins/themeSwitch/assets/snippets/global/unblur-nsfw-images-on-mouse-hover.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/themeSwitch/assets/snippets/global/unblur-nsfw-images-on-mouse-hover.css -------------------------------------------------------------------------------- /plugins/themeSwitch/assets/snippets/images/disable-lightbox-annimation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/themeSwitch/assets/snippets/images/disable-lightbox-annimation.css -------------------------------------------------------------------------------- /plugins/themeSwitch/assets/snippets/images/dont-crop-preview-thumbnails.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/themeSwitch/assets/snippets/images/dont-crop-preview-thumbnails.css -------------------------------------------------------------------------------- /plugins/themeSwitch/assets/snippets/movies/desktop-better-layout-larger.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/themeSwitch/assets/snippets/movies/desktop-better-layout-larger.css -------------------------------------------------------------------------------- /plugins/themeSwitch/assets/snippets/movies/desktop-better-layout-regular.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/themeSwitch/assets/snippets/movies/desktop-better-layout-regular.css -------------------------------------------------------------------------------- /plugins/themeSwitch/assets/snippets/performers/move-tag-field-to-top.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/themeSwitch/assets/snippets/performers/move-tag-field-to-top.css -------------------------------------------------------------------------------- /plugins/themeSwitch/assets/snippets/performers/performer-image-as-backdrop.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/themeSwitch/assets/snippets/performers/performer-image-as-backdrop.css -------------------------------------------------------------------------------- /plugins/themeSwitch/assets/snippets/performers/show-entire-performer-image.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/themeSwitch/assets/snippets/performers/show-entire-performer-image.css -------------------------------------------------------------------------------- /plugins/themeSwitch/assets/snippets/scenes/adjust-mouse-wall-mode.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/themeSwitch/assets/snippets/scenes/adjust-mouse-wall-mode.css -------------------------------------------------------------------------------- /plugins/themeSwitch/assets/snippets/scenes/disable-zoom-wall-mode.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/themeSwitch/assets/snippets/scenes/disable-zoom-wall-mode.css -------------------------------------------------------------------------------- /plugins/themeSwitch/assets/snippets/scenes/hide-scene-Scrubber.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/themeSwitch/assets/snippets/scenes/hide-scene-Scrubber.css -------------------------------------------------------------------------------- /plugins/themeSwitch/assets/snippets/scenes/hide-scene-specs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/themeSwitch/assets/snippets/scenes/hide-scene-specs.css -------------------------------------------------------------------------------- /plugins/themeSwitch/assets/snippets/scenes/hide-studio-logo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/themeSwitch/assets/snippets/scenes/hide-studio-logo.css -------------------------------------------------------------------------------- /plugins/themeSwitch/assets/snippets/scenes/hide-truncated-text.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/themeSwitch/assets/snippets/scenes/hide-truncated-text.css -------------------------------------------------------------------------------- /plugins/themeSwitch/assets/snippets/scenes/longer-string-studio.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/themeSwitch/assets/snippets/scenes/longer-string-studio.css -------------------------------------------------------------------------------- /plugins/themeSwitch/assets/snippets/scenes/show-extra-info.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/themeSwitch/assets/snippets/scenes/show-extra-info.css -------------------------------------------------------------------------------- /plugins/themeSwitch/assets/snippets/scenes/swap-studio-res-duration.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/themeSwitch/assets/snippets/scenes/swap-studio-res-duration.css -------------------------------------------------------------------------------- /plugins/themeSwitch/assets/snippets/scenes/tags-list-sess-width.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/themeSwitch/assets/snippets/scenes/tags-list-sess-width.css -------------------------------------------------------------------------------- /plugins/themeSwitch/assets/snippets/studios/different-studio-cards-layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/themeSwitch/assets/snippets/studios/different-studio-cards-layout.css -------------------------------------------------------------------------------- /plugins/themeSwitch/assets/snippets/studios/more-studios-row.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/themeSwitch/assets/snippets/studios/more-studios-row.css -------------------------------------------------------------------------------- /plugins/themeSwitch/assets/snippets/tags/alternative-tag-layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/themeSwitch/assets/snippets/tags/alternative-tag-layout.css -------------------------------------------------------------------------------- /plugins/themeSwitch/assets/snippets/tags/different-tag-cards.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/themeSwitch/assets/snippets/tags/different-tag-cards.css -------------------------------------------------------------------------------- /plugins/themeSwitch/assets/snippets/tags/hide-tag-images.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/themeSwitch/assets/snippets/tags/hide-tag-images.css -------------------------------------------------------------------------------- /plugins/themeSwitch/assets/snippets/tags/sub-tag-exolorer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/themeSwitch/assets/snippets/tags/sub-tag-exolorer.css -------------------------------------------------------------------------------- /plugins/themeSwitch/assets/themes/materialize/source.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/themeSwitch/assets/themes/materialize/source.txt -------------------------------------------------------------------------------- /plugins/themeSwitch/assets/themes/materialize/stash-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/themeSwitch/assets/themes/materialize/stash-theme.css -------------------------------------------------------------------------------- /plugins/themeSwitch/themeSwitch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/themeSwitch/themeSwitch.yml -------------------------------------------------------------------------------- /plugins/themeSwitch/themeSwitchCSS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/themeSwitch/themeSwitchCSS.js -------------------------------------------------------------------------------- /plugins/themeSwitch/themeSwitchMain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/themeSwitch/themeSwitchMain.js -------------------------------------------------------------------------------- /plugins/themeSwitch/themeSwtichDefault.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/themeSwitch/themeSwtichDefault.css -------------------------------------------------------------------------------- /plugins/timestampTrade/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/timestampTrade/README.md -------------------------------------------------------------------------------- /plugins/timestampTrade/requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | stashapp-tools 3 | -------------------------------------------------------------------------------- /plugins/timestampTrade/timestampTrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/timestampTrade/timestampTrade.py -------------------------------------------------------------------------------- /plugins/timestampTrade/timestampTrade.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/timestampTrade/timestampTrade.yml -------------------------------------------------------------------------------- /plugins/titleFromFilename/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/titleFromFilename/README.md -------------------------------------------------------------------------------- /plugins/titleFromFilename/config.py: -------------------------------------------------------------------------------- 1 | # strip file extension from title 2 | STRIP_EXT = True 3 | -------------------------------------------------------------------------------- /plugins/titleFromFilename/graphql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/titleFromFilename/graphql.py -------------------------------------------------------------------------------- /plugins/titleFromFilename/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/titleFromFilename/log.py -------------------------------------------------------------------------------- /plugins/titleFromFilename/requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | -------------------------------------------------------------------------------- /plugins/titleFromFilename/titleFromFilename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/titleFromFilename/titleFromFilename.py -------------------------------------------------------------------------------- /plugins/titleFromFilename/titleFromFilename.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/titleFromFilename/titleFromFilename.yml -------------------------------------------------------------------------------- /plugins/untagRedundantTags/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/untagRedundantTags/README.md -------------------------------------------------------------------------------- /plugins/untagRedundantTags/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/untagRedundantTags/requirements.txt -------------------------------------------------------------------------------- /plugins/untagRedundantTags/untagRedundantTags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/untagRedundantTags/untagRedundantTags.py -------------------------------------------------------------------------------- /plugins/untagRedundantTags/untagRedundantTags.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/untagRedundantTags/untagRedundantTags.yml -------------------------------------------------------------------------------- /plugins/videoChapterMarkers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/videoChapterMarkers/README.md -------------------------------------------------------------------------------- /plugins/videoChapterMarkers/requirements.txt: -------------------------------------------------------------------------------- 1 | stashapp-tools>=0.2.58 -------------------------------------------------------------------------------- /plugins/videoChapterMarkers/videoChapterMarkers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/videoChapterMarkers/videoChapterMarkers.py -------------------------------------------------------------------------------- /plugins/videoChapterMarkers/videoChapterMarkers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/plugins/videoChapterMarkers/videoChapterMarkers.yml -------------------------------------------------------------------------------- /schema/plugin.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/schema/plugin.schema.json -------------------------------------------------------------------------------- /scripts/Sqlite_Renamer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/scripts/Sqlite_Renamer/README.md -------------------------------------------------------------------------------- /scripts/Sqlite_Renamer/Stash_Sqlite_Renamer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/scripts/Sqlite_Renamer/Stash_Sqlite_Renamer.py -------------------------------------------------------------------------------- /scripts/Sqlite_Renamer/requirements.txt: -------------------------------------------------------------------------------- 1 | progressbar2~=4.4.2 2 | -------------------------------------------------------------------------------- /scripts/kodi-helper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/scripts/kodi-helper/README.md -------------------------------------------------------------------------------- /scripts/kodi-helper/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/scripts/kodi-helper/config.py -------------------------------------------------------------------------------- /scripts/kodi-helper/kodi-helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/scripts/kodi-helper/kodi-helper.py -------------------------------------------------------------------------------- /scripts/stash-watcher/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/scripts/stash-watcher/Dockerfile -------------------------------------------------------------------------------- /scripts/stash-watcher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/scripts/stash-watcher/README.md -------------------------------------------------------------------------------- /scripts/stash-watcher/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/scripts/stash-watcher/config.toml -------------------------------------------------------------------------------- /scripts/stash-watcher/defaults.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/scripts/stash-watcher/defaults.toml -------------------------------------------------------------------------------- /scripts/stash-watcher/requirements.txt: -------------------------------------------------------------------------------- 1 | argparse 2 | stashapp-tools 3 | watchdog<=4.0.2 4 | -------------------------------------------------------------------------------- /scripts/stash-watcher/watcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/scripts/stash-watcher/watcher.py -------------------------------------------------------------------------------- /themes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/themes/README.md -------------------------------------------------------------------------------- /themes/Theme-BlackHole/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/themes/Theme-BlackHole/README.md -------------------------------------------------------------------------------- /themes/Theme-BlackHole/Theme-BlackHole.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/themes/Theme-BlackHole/Theme-BlackHole.css -------------------------------------------------------------------------------- /themes/Theme-BlackHole/Theme-BlackHole.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/themes/Theme-BlackHole/Theme-BlackHole.yml -------------------------------------------------------------------------------- /themes/Theme-ColorPalette/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/themes/Theme-ColorPalette/README.md -------------------------------------------------------------------------------- /themes/Theme-ColorPalette/Theme-ColorPalette.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/themes/Theme-ColorPalette/Theme-ColorPalette.css -------------------------------------------------------------------------------- /themes/Theme-ColorPalette/Theme-ColorPalette.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/themes/Theme-ColorPalette/Theme-ColorPalette.js -------------------------------------------------------------------------------- /themes/Theme-ColorPalette/Theme-ColorPalette.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/themes/Theme-ColorPalette/Theme-ColorPalette.yml -------------------------------------------------------------------------------- /themes/Theme-Minimal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/themes/Theme-Minimal/README.md -------------------------------------------------------------------------------- /themes/Theme-Minimal/Theme-Minimal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/themes/Theme-Minimal/Theme-Minimal.yml -------------------------------------------------------------------------------- /themes/Theme-Minimal/_scrollbars.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/themes/Theme-Minimal/_scrollbars.css -------------------------------------------------------------------------------- /themes/Theme-Minimal/_theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/themes/Theme-Minimal/_theme.css -------------------------------------------------------------------------------- /themes/Theme-Minimal/assets/Outfit-VariableFont_wght.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/themes/Theme-Minimal/assets/Outfit-VariableFont_wght.woff2 -------------------------------------------------------------------------------- /themes/Theme-Minimal/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/themes/Theme-Minimal/index.css -------------------------------------------------------------------------------- /themes/Theme-Minimal/inputs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/themes/Theme-Minimal/inputs.css -------------------------------------------------------------------------------- /themes/Theme-Minimal/markers-wall.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/themes/Theme-Minimal/markers-wall.css -------------------------------------------------------------------------------- /themes/Theme-Minimal/modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/themes/Theme-Minimal/modal.css -------------------------------------------------------------------------------- /themes/Theme-Minimal/nav-bar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/themes/Theme-Minimal/nav-bar.css -------------------------------------------------------------------------------- /themes/Theme-Minimal/player.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/themes/Theme-Minimal/player.css -------------------------------------------------------------------------------- /themes/Theme-Minimal/popover.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/themes/Theme-Minimal/popover.css -------------------------------------------------------------------------------- /themes/Theme-Minimal/reset-scrollbars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/themes/Theme-Minimal/reset-scrollbars.js -------------------------------------------------------------------------------- /themes/Theme-Minimal/scene-tagger.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/themes/Theme-Minimal/scene-tagger.css -------------------------------------------------------------------------------- /themes/Theme-Minimal/scenes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/themes/Theme-Minimal/scenes.css -------------------------------------------------------------------------------- /themes/Theme-Minimal/settings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/themes/Theme-Minimal/settings.css -------------------------------------------------------------------------------- /themes/Theme-Minimal/shared.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/themes/Theme-Minimal/shared.css -------------------------------------------------------------------------------- /themes/Theme-Minimal/skeleton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/themes/Theme-Minimal/skeleton.css -------------------------------------------------------------------------------- /themes/Theme-Minimal/stats.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/themes/Theme-Minimal/stats.css -------------------------------------------------------------------------------- /themes/Theme-Minimal/studio-performer-tagger.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/themes/Theme-Minimal/studio-performer-tagger.css -------------------------------------------------------------------------------- /themes/Theme-Minimal/studio-tagger.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/themes/Theme-Minimal/studio-tagger.css -------------------------------------------------------------------------------- /themes/Theme-Minimal/studio.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/themes/Theme-Minimal/studio.css -------------------------------------------------------------------------------- /themes/Theme-ModernDark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/themes/Theme-ModernDark/README.md -------------------------------------------------------------------------------- /themes/Theme-ModernDark/Theme-ModernDark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/themes/Theme-ModernDark/Theme-ModernDark.css -------------------------------------------------------------------------------- /themes/Theme-ModernDark/Theme-ModernDark.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/themes/Theme-ModernDark/Theme-ModernDark.yml -------------------------------------------------------------------------------- /themes/Theme-NeonDark/README.md: -------------------------------------------------------------------------------- 1 | # NeonDark 2 | 3 | https://discourse.stashapp.cc/t/neondark/1424 -------------------------------------------------------------------------------- /themes/Theme-NeonDark/Theme-NeonDark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/themes/Theme-NeonDark/Theme-NeonDark.css -------------------------------------------------------------------------------- /themes/Theme-NeonDark/Theme-NeonDark.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/themes/Theme-NeonDark/Theme-NeonDark.yml -------------------------------------------------------------------------------- /themes/Theme-Night/README.md: -------------------------------------------------------------------------------- 1 | # Night 2 | 3 | https://discourse.stashapp.cc/t/night/1425 -------------------------------------------------------------------------------- /themes/Theme-Night/Theme-Night.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/themes/Theme-Night/Theme-Night.css -------------------------------------------------------------------------------- /themes/Theme-Night/Theme-Night.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/themes/Theme-Night/Theme-Night.yml -------------------------------------------------------------------------------- /themes/Theme-Plex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/themes/Theme-Plex/README.md -------------------------------------------------------------------------------- /themes/Theme-Plex/Theme-Plex.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/themes/Theme-Plex/Theme-Plex.css -------------------------------------------------------------------------------- /themes/Theme-Plex/Theme-Plex.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/themes/Theme-Plex/Theme-Plex.yml -------------------------------------------------------------------------------- /themes/Theme-PornHub/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/themes/Theme-PornHub/README.md -------------------------------------------------------------------------------- /themes/Theme-PornHub/Theme-PornHub.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/themes/Theme-PornHub/Theme-PornHub.css -------------------------------------------------------------------------------- /themes/Theme-PornHub/Theme-PornHub.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/themes/Theme-PornHub/Theme-PornHub.yml -------------------------------------------------------------------------------- /themes/Theme-Pulsar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/themes/Theme-Pulsar/README.md -------------------------------------------------------------------------------- /themes/Theme-Pulsar/Theme-Pulsar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/themes/Theme-Pulsar/Theme-Pulsar.css -------------------------------------------------------------------------------- /themes/Theme-Pulsar/Theme-Pulsar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/themes/Theme-Pulsar/Theme-Pulsar.yml -------------------------------------------------------------------------------- /themes/Theme-PulsarLight/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/themes/Theme-PulsarLight/README.md -------------------------------------------------------------------------------- /themes/Theme-PulsarLight/Theme-PulsarLight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/themes/Theme-PulsarLight/Theme-PulsarLight.css -------------------------------------------------------------------------------- /themes/Theme-PulsarLight/Theme-PulsarLight.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/themes/Theme-PulsarLight/Theme-PulsarLight.yml -------------------------------------------------------------------------------- /themes/Theme-RoundedYellow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/themes/Theme-RoundedYellow/README.md -------------------------------------------------------------------------------- /themes/Theme-RoundedYellow/Theme-RoundedYellow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/themes/Theme-RoundedYellow/Theme-RoundedYellow.css -------------------------------------------------------------------------------- /themes/Theme-RoundedYellow/Theme-RoundedYellow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/themes/Theme-RoundedYellow/Theme-RoundedYellow.yml -------------------------------------------------------------------------------- /userscripts/FansDB_Submission_Helper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/userscripts/FansDB_Submission_Helper/README.md -------------------------------------------------------------------------------- /userscripts/FansDB_Submission_Helper/fansdb_submission_helper.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/userscripts/FansDB_Submission_Helper/fansdb_submission_helper.user.js -------------------------------------------------------------------------------- /userscripts/StashDB_Submission_Helper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/userscripts/StashDB_Submission_Helper/README.md -------------------------------------------------------------------------------- /userscripts/StashDB_Submission_Helper/stashdb_submission_helper.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/userscripts/StashDB_Submission_Helper/stashdb_submission_helper.user.js -------------------------------------------------------------------------------- /validate.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 'use strict'; 3 | require('./validator/index.js')(); -------------------------------------------------------------------------------- /validator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/validator/index.js -------------------------------------------------------------------------------- /validator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/validator/package.json -------------------------------------------------------------------------------- /validator/plugin.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/validator/plugin.schema.json -------------------------------------------------------------------------------- /validator/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stashapp/CommunityScripts/HEAD/validator/yarn.lock --------------------------------------------------------------------------------