├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md └── workflows │ └── last-updated.yml ├── .gitignore ├── BlockTheSpot + Spicetify.bat ├── BlockTheSpot.bat ├── BlockTheSpot.sln ├── LICENSE ├── README.md ├── appveyor.yml ├── blockthespot_settings.json ├── config.ini ├── install.ps1 ├── packages └── Detours.4.0.1 │ ├── .signature.p7s │ ├── Detours.4.0.1.nupkg │ ├── build │ └── native │ │ └── Detours.targets │ └── lib │ └── native │ ├── include │ ├── detours.h │ ├── detver.h │ └── syelog.h │ └── libs │ ├── x64 │ ├── detours.lib │ └── syelog.lib │ └── x86 │ ├── detours.lib │ └── syelog.lib ├── src ├── BasicUtils │ ├── Hooking.cpp │ ├── Hooking.h │ ├── Json.cpp │ ├── Json.h │ ├── Logger.cpp │ ├── Logger.h │ ├── Memory.cpp │ ├── Memory.h │ ├── MemoryScanner.cpp │ ├── MemoryScanner.h │ ├── Utils.cpp │ └── Utils.h ├── BlockTheSpot.cpp ├── BlockTheSpot.vcxproj ├── BlockTheSpot.vcxproj.filters ├── BlockTheSpot.vcxproj.user ├── Debug.cpp ├── Debug.h ├── Modify.cpp ├── Modify.h ├── SettingsManager.cpp ├── SettingsManager.h ├── assembly_code.asm ├── chrome_elf.def ├── dllmain.cpp ├── dpapi.def ├── framework.h ├── packages.config └── pch.h └── uninstall.bat /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrpond/BlockTheSpot/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrpond/BlockTheSpot/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/workflows/last-updated.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrpond/BlockTheSpot/HEAD/.github/workflows/last-updated.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrpond/BlockTheSpot/HEAD/.gitignore -------------------------------------------------------------------------------- /BlockTheSpot + Spicetify.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrpond/BlockTheSpot/HEAD/BlockTheSpot + Spicetify.bat -------------------------------------------------------------------------------- /BlockTheSpot.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrpond/BlockTheSpot/HEAD/BlockTheSpot.bat -------------------------------------------------------------------------------- /BlockTheSpot.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrpond/BlockTheSpot/HEAD/BlockTheSpot.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrpond/BlockTheSpot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrpond/BlockTheSpot/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrpond/BlockTheSpot/HEAD/appveyor.yml -------------------------------------------------------------------------------- /blockthespot_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrpond/BlockTheSpot/HEAD/blockthespot_settings.json -------------------------------------------------------------------------------- /config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrpond/BlockTheSpot/HEAD/config.ini -------------------------------------------------------------------------------- /install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrpond/BlockTheSpot/HEAD/install.ps1 -------------------------------------------------------------------------------- /packages/Detours.4.0.1/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrpond/BlockTheSpot/HEAD/packages/Detours.4.0.1/.signature.p7s -------------------------------------------------------------------------------- /packages/Detours.4.0.1/Detours.4.0.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrpond/BlockTheSpot/HEAD/packages/Detours.4.0.1/Detours.4.0.1.nupkg -------------------------------------------------------------------------------- /packages/Detours.4.0.1/build/native/Detours.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrpond/BlockTheSpot/HEAD/packages/Detours.4.0.1/build/native/Detours.targets -------------------------------------------------------------------------------- /packages/Detours.4.0.1/lib/native/include/detours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrpond/BlockTheSpot/HEAD/packages/Detours.4.0.1/lib/native/include/detours.h -------------------------------------------------------------------------------- /packages/Detours.4.0.1/lib/native/include/detver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrpond/BlockTheSpot/HEAD/packages/Detours.4.0.1/lib/native/include/detver.h -------------------------------------------------------------------------------- /packages/Detours.4.0.1/lib/native/include/syelog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrpond/BlockTheSpot/HEAD/packages/Detours.4.0.1/lib/native/include/syelog.h -------------------------------------------------------------------------------- /packages/Detours.4.0.1/lib/native/libs/x64/detours.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrpond/BlockTheSpot/HEAD/packages/Detours.4.0.1/lib/native/libs/x64/detours.lib -------------------------------------------------------------------------------- /packages/Detours.4.0.1/lib/native/libs/x64/syelog.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrpond/BlockTheSpot/HEAD/packages/Detours.4.0.1/lib/native/libs/x64/syelog.lib -------------------------------------------------------------------------------- /packages/Detours.4.0.1/lib/native/libs/x86/detours.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrpond/BlockTheSpot/HEAD/packages/Detours.4.0.1/lib/native/libs/x86/detours.lib -------------------------------------------------------------------------------- /packages/Detours.4.0.1/lib/native/libs/x86/syelog.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrpond/BlockTheSpot/HEAD/packages/Detours.4.0.1/lib/native/libs/x86/syelog.lib -------------------------------------------------------------------------------- /src/BasicUtils/Hooking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrpond/BlockTheSpot/HEAD/src/BasicUtils/Hooking.cpp -------------------------------------------------------------------------------- /src/BasicUtils/Hooking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrpond/BlockTheSpot/HEAD/src/BasicUtils/Hooking.h -------------------------------------------------------------------------------- /src/BasicUtils/Json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrpond/BlockTheSpot/HEAD/src/BasicUtils/Json.cpp -------------------------------------------------------------------------------- /src/BasicUtils/Json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrpond/BlockTheSpot/HEAD/src/BasicUtils/Json.h -------------------------------------------------------------------------------- /src/BasicUtils/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrpond/BlockTheSpot/HEAD/src/BasicUtils/Logger.cpp -------------------------------------------------------------------------------- /src/BasicUtils/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrpond/BlockTheSpot/HEAD/src/BasicUtils/Logger.h -------------------------------------------------------------------------------- /src/BasicUtils/Memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrpond/BlockTheSpot/HEAD/src/BasicUtils/Memory.cpp -------------------------------------------------------------------------------- /src/BasicUtils/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrpond/BlockTheSpot/HEAD/src/BasicUtils/Memory.h -------------------------------------------------------------------------------- /src/BasicUtils/MemoryScanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrpond/BlockTheSpot/HEAD/src/BasicUtils/MemoryScanner.cpp -------------------------------------------------------------------------------- /src/BasicUtils/MemoryScanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrpond/BlockTheSpot/HEAD/src/BasicUtils/MemoryScanner.h -------------------------------------------------------------------------------- /src/BasicUtils/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrpond/BlockTheSpot/HEAD/src/BasicUtils/Utils.cpp -------------------------------------------------------------------------------- /src/BasicUtils/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrpond/BlockTheSpot/HEAD/src/BasicUtils/Utils.h -------------------------------------------------------------------------------- /src/BlockTheSpot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrpond/BlockTheSpot/HEAD/src/BlockTheSpot.cpp -------------------------------------------------------------------------------- /src/BlockTheSpot.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrpond/BlockTheSpot/HEAD/src/BlockTheSpot.vcxproj -------------------------------------------------------------------------------- /src/BlockTheSpot.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrpond/BlockTheSpot/HEAD/src/BlockTheSpot.vcxproj.filters -------------------------------------------------------------------------------- /src/BlockTheSpot.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrpond/BlockTheSpot/HEAD/src/BlockTheSpot.vcxproj.user -------------------------------------------------------------------------------- /src/Debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrpond/BlockTheSpot/HEAD/src/Debug.cpp -------------------------------------------------------------------------------- /src/Debug.h: -------------------------------------------------------------------------------- 1 | #ifndef NDEBUG 2 | DWORD WINAPI Debug(LPVOID lpParam); 3 | #endif 4 | -------------------------------------------------------------------------------- /src/Modify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrpond/BlockTheSpot/HEAD/src/Modify.cpp -------------------------------------------------------------------------------- /src/Modify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrpond/BlockTheSpot/HEAD/src/Modify.h -------------------------------------------------------------------------------- /src/SettingsManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrpond/BlockTheSpot/HEAD/src/SettingsManager.cpp -------------------------------------------------------------------------------- /src/SettingsManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrpond/BlockTheSpot/HEAD/src/SettingsManager.h -------------------------------------------------------------------------------- /src/assembly_code.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrpond/BlockTheSpot/HEAD/src/assembly_code.asm -------------------------------------------------------------------------------- /src/chrome_elf.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrpond/BlockTheSpot/HEAD/src/chrome_elf.def -------------------------------------------------------------------------------- /src/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrpond/BlockTheSpot/HEAD/src/dllmain.cpp -------------------------------------------------------------------------------- /src/dpapi.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrpond/BlockTheSpot/HEAD/src/dpapi.def -------------------------------------------------------------------------------- /src/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrpond/BlockTheSpot/HEAD/src/framework.h -------------------------------------------------------------------------------- /src/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrpond/BlockTheSpot/HEAD/src/packages.config -------------------------------------------------------------------------------- /src/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrpond/BlockTheSpot/HEAD/src/pch.h -------------------------------------------------------------------------------- /uninstall.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrpond/BlockTheSpot/HEAD/uninstall.bat --------------------------------------------------------------------------------