├── .gitignore ├── CHANGELOG.md ├── DOCS.md ├── README.md ├── config.py ├── dist └── public │ ├── Stash Batch Query Edit.user.js │ ├── Stash Batch Result Toggle.user.js │ ├── Stash Batch Save.user.js │ ├── Stash Batch Search.user.js │ ├── Stash Markdown.user.js │ ├── Stash New Performer Filter Button.user.js │ ├── Stash Open Media Player.user.js │ ├── Stash Performer Audit Task Button.user.js │ ├── Stash Performer Image Cropper.user.js │ ├── Stash Performer Markers Tab.user.js │ ├── Stash Performer Tagger Additions.user.js │ ├── Stash Performer URL Searchbox.user.js │ ├── Stash Scene Tagger Additions.user.js │ ├── Stash Scene Tagger Colorizer.user.js │ ├── Stash Scene Tagger Draft Submit.user.js │ ├── Stash Scene Tagger Linkify.user.js │ ├── Stash Scene Thumbnail Cropper.user.js │ ├── Stash Set Stashbox Favorite Performers.user.js │ ├── Stash StashID Icon.user.js │ ├── Stash StashID Input.user.js │ ├── Stash Stats.user.js │ ├── Stash Tag Image Cropper.user.js │ └── Stash Userscripts Bundle.user.js ├── images ├── Stash Batch Query Edit │ ├── config.png │ └── scenes-tagger.png ├── Stash Batch Result Toggle │ ├── config.png │ └── scenes-tagger.png ├── Stash Batch Save │ └── scenes-tagger.png ├── Stash Batch Search │ └── scenes-tagger.png ├── Stash Markdown │ └── tag-description.png ├── Stash New Performer Filter Button │ └── performers-page.png ├── Stash Open Media Player │ └── system-settings.png ├── Stash Performer Audit Task Button │ ├── performers-page.png │ ├── plugin-tasks.png │ └── system-settings.png ├── Stash Performer Image Cropper │ └── performer-image-cropper.png ├── Stash Performer Markers Tab │ └── performer-page.png ├── Stash Performer Tagger Additions │ └── performer-tagger.png ├── Stash Performer URL Searchbox │ └── performers-page.png ├── Stash Scene Tagger Additions │ ├── config.png │ └── scenes-tagger.png ├── Stash Scene Tagger Colorizer │ ├── config.png │ └── scenes-tagger.png ├── Stash Scene Tagger Draft Submit │ └── scenes-tagger.png ├── Stash Scene Tagger Linkify │ ├── config.png │ └── scenes-tagger.png ├── Stash Scene Thumbnail Cropper │ └── Stash_Scene_Thumbnail_Cropper.png ├── Stash Set Stashbox Favorite Performers │ ├── performers-page.png │ ├── plugin-tasks.png │ └── system-settings.png ├── Stash StashID Icon │ ├── performer-page.png │ ├── scene-page.png │ └── studio-page.png ├── Stash StashID Input │ ├── performer-page.png │ └── studio-page.png ├── Stash Stats │ └── stats-page.png ├── Stash Studio Image And Parent On Create │ └── scenes-tagger.png ├── Stash Tag Image Cropper │ └── tag-image-cropper.png └── Userscript Functions Plugin │ ├── plugin-tasks.png │ └── system-settings.png ├── plugins └── userscript_functions │ ├── audit_performer_urls.py │ ├── config.ini │ ├── config_manager.py │ ├── favorite_performers_sync.py │ ├── performer_url_regexes.txt │ ├── userscript_functions.py │ └── userscript_functions.yml └── src ├── StashUserscriptLibrary.js ├── body ├── Stash Batch Query Edit.user.js ├── Stash Batch Result Toggle.user.js ├── Stash Batch Save.user.js ├── Stash Batch Search.user.js ├── Stash Markdown.user.js ├── Stash New Performer Filter Button.user.js ├── Stash Open Media Player.user.js ├── Stash Performer Audit Task Button.user.js ├── Stash Performer Image Cropper.user.js ├── Stash Performer Markers Tab.user.js ├── Stash Performer Tagger Additions.user.js ├── Stash Performer URL Searchbox.user.js ├── Stash Scene Tagger Additions.user.js ├── Stash Scene Tagger Colorizer.user.js ├── Stash Scene Tagger Draft Submit.user.js ├── Stash Scene Tagger Linkify.user.js ├── Stash Scene Thumbnail Cropper.user.js ├── Stash Set Stashbox Favorite Performers.user.js ├── Stash StashID Icon.user.js ├── Stash StashID Input.user.js ├── Stash Stats.user.js └── Stash Tag Image Cropper.user.js └── header ├── Stash Batch Query Edit.user.js ├── Stash Batch Result Toggle.user.js ├── Stash Batch Save.user.js ├── Stash Batch Search.user.js ├── Stash Markdown.user.js ├── Stash New Performer Filter Button.user.js ├── Stash Open Media Player.user.js ├── Stash Performer Audit Task Button.user.js ├── Stash Performer Image Cropper.user.js ├── Stash Performer Markers Tab.user.js ├── Stash Performer Tagger Additions.user.js ├── Stash Performer URL Searchbox.user.js ├── Stash Scene Tagger Additions.user.js ├── Stash Scene Tagger Colorizer.user.js ├── Stash Scene Tagger Draft Submit.user.js ├── Stash Scene Tagger Linkify.user.js ├── Stash Scene Thumbnail Cropper.user.js ├── Stash Set Stashbox Favorite Performers.user.js ├── Stash StashID Icon.user.js ├── Stash StashID Input.user.js ├── Stash Stats.user.js └── Stash Tag Image Cropper.user.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /DOCS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/DOCS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/config.py -------------------------------------------------------------------------------- /dist/public/Stash Batch Query Edit.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/dist/public/Stash Batch Query Edit.user.js -------------------------------------------------------------------------------- /dist/public/Stash Batch Result Toggle.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/dist/public/Stash Batch Result Toggle.user.js -------------------------------------------------------------------------------- /dist/public/Stash Batch Save.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/dist/public/Stash Batch Save.user.js -------------------------------------------------------------------------------- /dist/public/Stash Batch Search.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/dist/public/Stash Batch Search.user.js -------------------------------------------------------------------------------- /dist/public/Stash Markdown.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/dist/public/Stash Markdown.user.js -------------------------------------------------------------------------------- /dist/public/Stash New Performer Filter Button.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/dist/public/Stash New Performer Filter Button.user.js -------------------------------------------------------------------------------- /dist/public/Stash Open Media Player.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/dist/public/Stash Open Media Player.user.js -------------------------------------------------------------------------------- /dist/public/Stash Performer Audit Task Button.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/dist/public/Stash Performer Audit Task Button.user.js -------------------------------------------------------------------------------- /dist/public/Stash Performer Image Cropper.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/dist/public/Stash Performer Image Cropper.user.js -------------------------------------------------------------------------------- /dist/public/Stash Performer Markers Tab.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/dist/public/Stash Performer Markers Tab.user.js -------------------------------------------------------------------------------- /dist/public/Stash Performer Tagger Additions.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/dist/public/Stash Performer Tagger Additions.user.js -------------------------------------------------------------------------------- /dist/public/Stash Performer URL Searchbox.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/dist/public/Stash Performer URL Searchbox.user.js -------------------------------------------------------------------------------- /dist/public/Stash Scene Tagger Additions.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/dist/public/Stash Scene Tagger Additions.user.js -------------------------------------------------------------------------------- /dist/public/Stash Scene Tagger Colorizer.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/dist/public/Stash Scene Tagger Colorizer.user.js -------------------------------------------------------------------------------- /dist/public/Stash Scene Tagger Draft Submit.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/dist/public/Stash Scene Tagger Draft Submit.user.js -------------------------------------------------------------------------------- /dist/public/Stash Scene Tagger Linkify.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/dist/public/Stash Scene Tagger Linkify.user.js -------------------------------------------------------------------------------- /dist/public/Stash Scene Thumbnail Cropper.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/dist/public/Stash Scene Thumbnail Cropper.user.js -------------------------------------------------------------------------------- /dist/public/Stash Set Stashbox Favorite Performers.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/dist/public/Stash Set Stashbox Favorite Performers.user.js -------------------------------------------------------------------------------- /dist/public/Stash StashID Icon.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/dist/public/Stash StashID Icon.user.js -------------------------------------------------------------------------------- /dist/public/Stash StashID Input.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/dist/public/Stash StashID Input.user.js -------------------------------------------------------------------------------- /dist/public/Stash Stats.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/dist/public/Stash Stats.user.js -------------------------------------------------------------------------------- /dist/public/Stash Tag Image Cropper.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/dist/public/Stash Tag Image Cropper.user.js -------------------------------------------------------------------------------- /dist/public/Stash Userscripts Bundle.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/dist/public/Stash Userscripts Bundle.user.js -------------------------------------------------------------------------------- /images/Stash Batch Query Edit/config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/images/Stash Batch Query Edit/config.png -------------------------------------------------------------------------------- /images/Stash Batch Query Edit/scenes-tagger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/images/Stash Batch Query Edit/scenes-tagger.png -------------------------------------------------------------------------------- /images/Stash Batch Result Toggle/config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/images/Stash Batch Result Toggle/config.png -------------------------------------------------------------------------------- /images/Stash Batch Result Toggle/scenes-tagger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/images/Stash Batch Result Toggle/scenes-tagger.png -------------------------------------------------------------------------------- /images/Stash Batch Save/scenes-tagger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/images/Stash Batch Save/scenes-tagger.png -------------------------------------------------------------------------------- /images/Stash Batch Search/scenes-tagger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/images/Stash Batch Search/scenes-tagger.png -------------------------------------------------------------------------------- /images/Stash Markdown/tag-description.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/images/Stash Markdown/tag-description.png -------------------------------------------------------------------------------- /images/Stash New Performer Filter Button/performers-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/images/Stash New Performer Filter Button/performers-page.png -------------------------------------------------------------------------------- /images/Stash Open Media Player/system-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/images/Stash Open Media Player/system-settings.png -------------------------------------------------------------------------------- /images/Stash Performer Audit Task Button/performers-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/images/Stash Performer Audit Task Button/performers-page.png -------------------------------------------------------------------------------- /images/Stash Performer Audit Task Button/plugin-tasks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/images/Stash Performer Audit Task Button/plugin-tasks.png -------------------------------------------------------------------------------- /images/Stash Performer Audit Task Button/system-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/images/Stash Performer Audit Task Button/system-settings.png -------------------------------------------------------------------------------- /images/Stash Performer Image Cropper/performer-image-cropper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/images/Stash Performer Image Cropper/performer-image-cropper.png -------------------------------------------------------------------------------- /images/Stash Performer Markers Tab/performer-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/images/Stash Performer Markers Tab/performer-page.png -------------------------------------------------------------------------------- /images/Stash Performer Tagger Additions/performer-tagger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/images/Stash Performer Tagger Additions/performer-tagger.png -------------------------------------------------------------------------------- /images/Stash Performer URL Searchbox/performers-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/images/Stash Performer URL Searchbox/performers-page.png -------------------------------------------------------------------------------- /images/Stash Scene Tagger Additions/config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/images/Stash Scene Tagger Additions/config.png -------------------------------------------------------------------------------- /images/Stash Scene Tagger Additions/scenes-tagger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/images/Stash Scene Tagger Additions/scenes-tagger.png -------------------------------------------------------------------------------- /images/Stash Scene Tagger Colorizer/config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/images/Stash Scene Tagger Colorizer/config.png -------------------------------------------------------------------------------- /images/Stash Scene Tagger Colorizer/scenes-tagger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/images/Stash Scene Tagger Colorizer/scenes-tagger.png -------------------------------------------------------------------------------- /images/Stash Scene Tagger Draft Submit/scenes-tagger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/images/Stash Scene Tagger Draft Submit/scenes-tagger.png -------------------------------------------------------------------------------- /images/Stash Scene Tagger Linkify/config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/images/Stash Scene Tagger Linkify/config.png -------------------------------------------------------------------------------- /images/Stash Scene Tagger Linkify/scenes-tagger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/images/Stash Scene Tagger Linkify/scenes-tagger.png -------------------------------------------------------------------------------- /images/Stash Scene Thumbnail Cropper/Stash_Scene_Thumbnail_Cropper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/images/Stash Scene Thumbnail Cropper/Stash_Scene_Thumbnail_Cropper.png -------------------------------------------------------------------------------- /images/Stash Set Stashbox Favorite Performers/performers-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/images/Stash Set Stashbox Favorite Performers/performers-page.png -------------------------------------------------------------------------------- /images/Stash Set Stashbox Favorite Performers/plugin-tasks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/images/Stash Set Stashbox Favorite Performers/plugin-tasks.png -------------------------------------------------------------------------------- /images/Stash Set Stashbox Favorite Performers/system-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/images/Stash Set Stashbox Favorite Performers/system-settings.png -------------------------------------------------------------------------------- /images/Stash StashID Icon/performer-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/images/Stash StashID Icon/performer-page.png -------------------------------------------------------------------------------- /images/Stash StashID Icon/scene-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/images/Stash StashID Icon/scene-page.png -------------------------------------------------------------------------------- /images/Stash StashID Icon/studio-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/images/Stash StashID Icon/studio-page.png -------------------------------------------------------------------------------- /images/Stash StashID Input/performer-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/images/Stash StashID Input/performer-page.png -------------------------------------------------------------------------------- /images/Stash StashID Input/studio-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/images/Stash StashID Input/studio-page.png -------------------------------------------------------------------------------- /images/Stash Stats/stats-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/images/Stash Stats/stats-page.png -------------------------------------------------------------------------------- /images/Stash Studio Image And Parent On Create/scenes-tagger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/images/Stash Studio Image And Parent On Create/scenes-tagger.png -------------------------------------------------------------------------------- /images/Stash Tag Image Cropper/tag-image-cropper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/images/Stash Tag Image Cropper/tag-image-cropper.png -------------------------------------------------------------------------------- /images/Userscript Functions Plugin/plugin-tasks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/images/Userscript Functions Plugin/plugin-tasks.png -------------------------------------------------------------------------------- /images/Userscript Functions Plugin/system-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/images/Userscript Functions Plugin/system-settings.png -------------------------------------------------------------------------------- /plugins/userscript_functions/audit_performer_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/plugins/userscript_functions/audit_performer_urls.py -------------------------------------------------------------------------------- /plugins/userscript_functions/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/plugins/userscript_functions/config.ini -------------------------------------------------------------------------------- /plugins/userscript_functions/config_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/plugins/userscript_functions/config_manager.py -------------------------------------------------------------------------------- /plugins/userscript_functions/favorite_performers_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/plugins/userscript_functions/favorite_performers_sync.py -------------------------------------------------------------------------------- /plugins/userscript_functions/performer_url_regexes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/plugins/userscript_functions/performer_url_regexes.txt -------------------------------------------------------------------------------- /plugins/userscript_functions/userscript_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/plugins/userscript_functions/userscript_functions.py -------------------------------------------------------------------------------- /plugins/userscript_functions/userscript_functions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/plugins/userscript_functions/userscript_functions.yml -------------------------------------------------------------------------------- /src/StashUserscriptLibrary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/src/StashUserscriptLibrary.js -------------------------------------------------------------------------------- /src/body/Stash Batch Query Edit.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/src/body/Stash Batch Query Edit.user.js -------------------------------------------------------------------------------- /src/body/Stash Batch Result Toggle.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/src/body/Stash Batch Result Toggle.user.js -------------------------------------------------------------------------------- /src/body/Stash Batch Save.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/src/body/Stash Batch Save.user.js -------------------------------------------------------------------------------- /src/body/Stash Batch Search.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/src/body/Stash Batch Search.user.js -------------------------------------------------------------------------------- /src/body/Stash Markdown.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/src/body/Stash Markdown.user.js -------------------------------------------------------------------------------- /src/body/Stash New Performer Filter Button.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/src/body/Stash New Performer Filter Button.user.js -------------------------------------------------------------------------------- /src/body/Stash Open Media Player.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/src/body/Stash Open Media Player.user.js -------------------------------------------------------------------------------- /src/body/Stash Performer Audit Task Button.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/src/body/Stash Performer Audit Task Button.user.js -------------------------------------------------------------------------------- /src/body/Stash Performer Image Cropper.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/src/body/Stash Performer Image Cropper.user.js -------------------------------------------------------------------------------- /src/body/Stash Performer Markers Tab.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/src/body/Stash Performer Markers Tab.user.js -------------------------------------------------------------------------------- /src/body/Stash Performer Tagger Additions.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/src/body/Stash Performer Tagger Additions.user.js -------------------------------------------------------------------------------- /src/body/Stash Performer URL Searchbox.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/src/body/Stash Performer URL Searchbox.user.js -------------------------------------------------------------------------------- /src/body/Stash Scene Tagger Additions.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/src/body/Stash Scene Tagger Additions.user.js -------------------------------------------------------------------------------- /src/body/Stash Scene Tagger Colorizer.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/src/body/Stash Scene Tagger Colorizer.user.js -------------------------------------------------------------------------------- /src/body/Stash Scene Tagger Draft Submit.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/src/body/Stash Scene Tagger Draft Submit.user.js -------------------------------------------------------------------------------- /src/body/Stash Scene Tagger Linkify.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/src/body/Stash Scene Tagger Linkify.user.js -------------------------------------------------------------------------------- /src/body/Stash Scene Thumbnail Cropper.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/src/body/Stash Scene Thumbnail Cropper.user.js -------------------------------------------------------------------------------- /src/body/Stash Set Stashbox Favorite Performers.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/src/body/Stash Set Stashbox Favorite Performers.user.js -------------------------------------------------------------------------------- /src/body/Stash StashID Icon.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/src/body/Stash StashID Icon.user.js -------------------------------------------------------------------------------- /src/body/Stash StashID Input.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/src/body/Stash StashID Input.user.js -------------------------------------------------------------------------------- /src/body/Stash Stats.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/src/body/Stash Stats.user.js -------------------------------------------------------------------------------- /src/body/Stash Tag Image Cropper.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/src/body/Stash Tag Image Cropper.user.js -------------------------------------------------------------------------------- /src/header/Stash Batch Query Edit.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/src/header/Stash Batch Query Edit.user.js -------------------------------------------------------------------------------- /src/header/Stash Batch Result Toggle.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/src/header/Stash Batch Result Toggle.user.js -------------------------------------------------------------------------------- /src/header/Stash Batch Save.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/src/header/Stash Batch Save.user.js -------------------------------------------------------------------------------- /src/header/Stash Batch Search.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/src/header/Stash Batch Search.user.js -------------------------------------------------------------------------------- /src/header/Stash Markdown.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/src/header/Stash Markdown.user.js -------------------------------------------------------------------------------- /src/header/Stash New Performer Filter Button.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/src/header/Stash New Performer Filter Button.user.js -------------------------------------------------------------------------------- /src/header/Stash Open Media Player.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/src/header/Stash Open Media Player.user.js -------------------------------------------------------------------------------- /src/header/Stash Performer Audit Task Button.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/src/header/Stash Performer Audit Task Button.user.js -------------------------------------------------------------------------------- /src/header/Stash Performer Image Cropper.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/src/header/Stash Performer Image Cropper.user.js -------------------------------------------------------------------------------- /src/header/Stash Performer Markers Tab.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/src/header/Stash Performer Markers Tab.user.js -------------------------------------------------------------------------------- /src/header/Stash Performer Tagger Additions.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/src/header/Stash Performer Tagger Additions.user.js -------------------------------------------------------------------------------- /src/header/Stash Performer URL Searchbox.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/src/header/Stash Performer URL Searchbox.user.js -------------------------------------------------------------------------------- /src/header/Stash Scene Tagger Additions.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/src/header/Stash Scene Tagger Additions.user.js -------------------------------------------------------------------------------- /src/header/Stash Scene Tagger Colorizer.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/src/header/Stash Scene Tagger Colorizer.user.js -------------------------------------------------------------------------------- /src/header/Stash Scene Tagger Draft Submit.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/src/header/Stash Scene Tagger Draft Submit.user.js -------------------------------------------------------------------------------- /src/header/Stash Scene Tagger Linkify.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/src/header/Stash Scene Tagger Linkify.user.js -------------------------------------------------------------------------------- /src/header/Stash Scene Thumbnail Cropper.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/src/header/Stash Scene Thumbnail Cropper.user.js -------------------------------------------------------------------------------- /src/header/Stash Set Stashbox Favorite Performers.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/src/header/Stash Set Stashbox Favorite Performers.user.js -------------------------------------------------------------------------------- /src/header/Stash StashID Icon.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/src/header/Stash StashID Icon.user.js -------------------------------------------------------------------------------- /src/header/Stash StashID Input.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/src/header/Stash StashID Input.user.js -------------------------------------------------------------------------------- /src/header/Stash Stats.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/src/header/Stash Stats.user.js -------------------------------------------------------------------------------- /src/header/Stash Tag Image Cropper.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stg-annon/stash-userscripts/HEAD/src/header/Stash Tag Image Cropper.user.js --------------------------------------------------------------------------------