├── .gitignore ├── LICENSE.md ├── README.md ├── anonfiles-upload.sh ├── config ├── .gitignore ├── fansarchive.sample.js └── lolisafe.sample.js ├── fansly-stream-capture.sh ├── ffmpeg-volume-mute.php ├── gofile-folder-upload.sh ├── gofile-guest-account.sh ├── gofile-single-upload.sh ├── index.php ├── lolisafe-create-albums.js ├── lolisafe-search-albums.js ├── lolisafe-upload-folder.sh ├── megatools-copy.sh ├── megatools-mkdir.sh ├── megatools-reg.sh ├── ofans-party-dl.sh ├── onlyfans-backup-config.sh ├── onlyfans-create-profile.sh ├── onlyfans-sort-creator-clipboard-list.js ├── onlyfans-switch-config.sh ├── output └── .gitignore ├── package.json ├── pixeldrain-upload.sh ├── replace-bbcodes.js ├── ss-minio.sh ├── twitch-founders.sh ├── upload-minio.sh └── vcs-folder.sh /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-rcus/marcus-scripts/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-rcus/marcus-scripts/HEAD/README.md -------------------------------------------------------------------------------- /anonfiles-upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-rcus/marcus-scripts/HEAD/anonfiles-upload.sh -------------------------------------------------------------------------------- /config/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !*.sample.* 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /config/fansarchive.sample.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | token: '', 3 | }; -------------------------------------------------------------------------------- /config/lolisafe.sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-rcus/marcus-scripts/HEAD/config/lolisafe.sample.js -------------------------------------------------------------------------------- /fansly-stream-capture.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-rcus/marcus-scripts/HEAD/fansly-stream-capture.sh -------------------------------------------------------------------------------- /ffmpeg-volume-mute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-rcus/marcus-scripts/HEAD/ffmpeg-volume-mute.php -------------------------------------------------------------------------------- /gofile-folder-upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-rcus/marcus-scripts/HEAD/gofile-folder-upload.sh -------------------------------------------------------------------------------- /gofile-guest-account.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-rcus/marcus-scripts/HEAD/gofile-guest-account.sh -------------------------------------------------------------------------------- /gofile-single-upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-rcus/marcus-scripts/HEAD/gofile-single-upload.sh -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-rcus/marcus-scripts/HEAD/index.php -------------------------------------------------------------------------------- /lolisafe-create-albums.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-rcus/marcus-scripts/HEAD/lolisafe-create-albums.js -------------------------------------------------------------------------------- /lolisafe-search-albums.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-rcus/marcus-scripts/HEAD/lolisafe-search-albums.js -------------------------------------------------------------------------------- /lolisafe-upload-folder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-rcus/marcus-scripts/HEAD/lolisafe-upload-folder.sh -------------------------------------------------------------------------------- /megatools-copy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-rcus/marcus-scripts/HEAD/megatools-copy.sh -------------------------------------------------------------------------------- /megatools-mkdir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-rcus/marcus-scripts/HEAD/megatools-mkdir.sh -------------------------------------------------------------------------------- /megatools-reg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-rcus/marcus-scripts/HEAD/megatools-reg.sh -------------------------------------------------------------------------------- /ofans-party-dl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-rcus/marcus-scripts/HEAD/ofans-party-dl.sh -------------------------------------------------------------------------------- /onlyfans-backup-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-rcus/marcus-scripts/HEAD/onlyfans-backup-config.sh -------------------------------------------------------------------------------- /onlyfans-create-profile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-rcus/marcus-scripts/HEAD/onlyfans-create-profile.sh -------------------------------------------------------------------------------- /onlyfans-sort-creator-clipboard-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-rcus/marcus-scripts/HEAD/onlyfans-sort-creator-clipboard-list.js -------------------------------------------------------------------------------- /onlyfans-switch-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-rcus/marcus-scripts/HEAD/onlyfans-switch-config.sh -------------------------------------------------------------------------------- /output/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !*.sample.json 3 | !.gitignore -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-rcus/marcus-scripts/HEAD/package.json -------------------------------------------------------------------------------- /pixeldrain-upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-rcus/marcus-scripts/HEAD/pixeldrain-upload.sh -------------------------------------------------------------------------------- /replace-bbcodes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-rcus/marcus-scripts/HEAD/replace-bbcodes.js -------------------------------------------------------------------------------- /ss-minio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-rcus/marcus-scripts/HEAD/ss-minio.sh -------------------------------------------------------------------------------- /twitch-founders.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-rcus/marcus-scripts/HEAD/twitch-founders.sh -------------------------------------------------------------------------------- /upload-minio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-rcus/marcus-scripts/HEAD/upload-minio.sh -------------------------------------------------------------------------------- /vcs-folder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M-rcus/marcus-scripts/HEAD/vcs-folder.sh --------------------------------------------------------------------------------