Skip to content

Commit

Permalink
use made in China hook, deep block ads.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrpond committed Aug 22, 2019
1 parent f08c799 commit e0d8e11
Show file tree
Hide file tree
Showing 13 changed files with 1,251 additions and 1,089 deletions.
6 changes: 0 additions & 6 deletions .gitmodules

This file was deleted.

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ Please do support Spotify by using premium!!!!

## Video, audio & banner adblock/skip for Spotify

**Current Version:** 0.19
**Current Version:** 0.20

**Last updated:** 19th August 2019
**Last updated:** 22 August 2019

**Last tested version:** 1.1.12.451.gdb77255f

Expand Down
Binary file modified chrome_elf.dll
Binary file not shown.
1 change: 0 additions & 1 deletion mhook
Submodule mhook deleted from 6b82fa
2 changes: 2 additions & 0 deletions src/BlockTheSpot.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
// BlockTheSpot.cpp : Defines the exported functions for the DLL application.
//

#include "stdafx.h"

bool AddDllToBlacklist (const wchar_t* dll_name) { return true; }
Expand Down
22 changes: 7 additions & 15 deletions src/BlockTheSpot.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@
<TargetName>chrome_elf</TargetName>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<LinkIncremental>false</LinkIncremental>
<TargetName>chrome_elf</TargetName>
<OutDir>$(ProjectDir)..\</OutDir>
</PropertyGroup>
Expand All @@ -73,12 +72,11 @@
<PrecompiledHeader>
</PrecompiledHeader>
<Optimization>MaxSpeed</Optimization>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<FunctionLevelLinking>false</FunctionLevelLinking>
<PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;_USRDLL;BLOCKTHESPOT_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<SDLCheck>true</SDLCheck>
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
<DebugInformationFormat>None</DebugInformationFormat>
<FavorSizeOrSpeed>Size</FavorSizeOrSpeed>
<InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
</ClCompile>
<Link>
Expand All @@ -89,24 +87,16 @@
<ModuleDefinitionFile>chrome_elf.def</ModuleDefinitionFile>
<IgnoreAllDefaultLibraries>
</IgnoreAllDefaultLibraries>
<LinkTimeCodeGeneration>UseLinkTimeCodeGeneration</LinkTimeCodeGeneration>
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<ClInclude Include="..\mhook\disasm-lib\cpu.h" />
<ClInclude Include="..\mhook\disasm-lib\disasm.h" />
<ClInclude Include="..\mhook\disasm-lib\disasm_x86.h" />
<ClInclude Include="..\mhook\disasm-lib\disasm_x86_tables.h" />
<ClInclude Include="..\mhook\disasm-lib\misc.h" />
<ClInclude Include="..\mhook\mhook-lib\mhook.h" />
<ClInclude Include="HookApi.h" />
<ClInclude Include="hosts.h" />
<ClInclude Include="stdafx.h" />
<ClInclude Include="targetver.h" />
</ItemGroup>
<ItemGroup>
<ClCompile Include="..\mhook\disasm-lib\cpu.c" />
<ClCompile Include="..\mhook\disasm-lib\disasm.c" />
<ClCompile Include="..\mhook\disasm-lib\disasm_x86.c" />
<ClCompile Include="..\mhook\mhook-lib\mhook.cpp" />
<ClCompile Include="dllmain.cpp">
<CompileAsManaged Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">false</CompileAsManaged>
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
Expand All @@ -116,6 +106,8 @@
</PrecompiledHeader>
</ClCompile>
<ClCompile Include="BlockTheSpot.cpp" />
<ClCompile Include="HookApi.cpp" />
<ClCompile Include="hosts.cpp" />
<ClCompile Include="stdafx.cpp" />
</ItemGroup>
<ItemGroup>
Expand Down
39 changes: 8 additions & 31 deletions src/BlockTheSpot.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -4,48 +4,25 @@
<ClCompile Include="dllmain.cpp" />
<ClCompile Include="BlockTheSpot.cpp" />
<ClCompile Include="stdafx.cpp" />
<ClCompile Include="..\mhook\mhook-lib\mhook.cpp">
<Filter>mhook</Filter>
</ClCompile>
<ClCompile Include="..\mhook\disasm-lib\cpu.c">
<Filter>mhook</Filter>
</ClCompile>
<ClCompile Include="..\mhook\disasm-lib\disasm.c">
<Filter>mhook</Filter>
</ClCompile>
<ClCompile Include="..\mhook\disasm-lib\disasm_x86.c">
<Filter>mhook</Filter>
<ClCompile Include="HookApi.cpp">
<Filter>hookapi</Filter>
</ClCompile>
<ClCompile Include="hosts.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="stdafx.h" />
<ClInclude Include="targetver.h" />
<ClInclude Include="hosts.h" />
<ClInclude Include="..\mhook\mhook-lib\mhook.h">
<Filter>mhook</Filter>
</ClInclude>
<ClInclude Include="..\mhook\disasm-lib\cpu.h">
<Filter>mhook</Filter>
</ClInclude>
<ClInclude Include="..\mhook\disasm-lib\disasm.h">
<Filter>mhook</Filter>
</ClInclude>
<ClInclude Include="..\mhook\disasm-lib\disasm_x86.h">
<Filter>mhook</Filter>
</ClInclude>
<ClInclude Include="..\mhook\disasm-lib\disasm_x86_tables.h">
<Filter>mhook</Filter>
</ClInclude>
<ClInclude Include="..\mhook\disasm-lib\misc.h">
<Filter>mhook</Filter>
<ClInclude Include="HookApi.h">
<Filter>hookapi</Filter>
</ClInclude>
<ClInclude Include="hosts.h" />
</ItemGroup>
<ItemGroup>
<None Include="chrome_elf.def" />
</ItemGroup>
<ItemGroup>
<Filter Include="mhook">
<UniqueIdentifier>{5f92c477-8601-4c3c-a1e2-b55ebd230af4}</UniqueIdentifier>
<Filter Include="hookapi">
<UniqueIdentifier>{6dec95b4-4fa2-4d85-9de5-8a6af4d6bb2d}</UniqueIdentifier>
</Filter>
</ItemGroup>
</Project>
Loading

0 comments on commit e0d8e11

Please sign in to comment.