(Sep. 27, 2015 09:26 AM)cattleyavns Wrote: I have the same result as you, maybe this script is a little bit more complex than other script, but i will try to make it work on Privoxy, because it is a very useful script.
Okay, I made this script works now! Perfect! No anti adblock popup anymore
http://prntscr.com/8kz5qt http://prntscr.com/8kz80t
You will need another filter to fix this script ( https://greasyfork.org/scripts/735-anti-...ti-Adblock Killer | Reek.user.js ), replace these lines:
Code:
if (Aak.getScriptManager()) {
Aak.registerCommands();
Aak.update.automatic();
Aak.listDetect();
Aak.blockDetect();
} else { // Native
throw "Sorry! No Native support..";
}
with:
Code:
//if (Aak.getScriptManager()) {
Aak.registerCommands();
Aak.update.automatic();
Aak.listDetect();
Aak.blockDetect();
//} else { // Native
// throw "Sorry! No Native support..";
//}
The author only allow true Greasemonkey user use this script, he tries to detect if user uses Greasemonkey or not, if not this script will not work, so just by removing those line we can bypass that limit 
Here is my generated filter to do that, just open that URL https://greasyfork.org/scripts/735-anti-...ti-Adblock Killer | Reek.user.js and Ctrl + F5 to force reload its content because web browser cache that url.
Code:
FILTER: fixantiadblockiller
s@if \(Aak\.getScriptManager\(\)\) \{\s*?\
Aak\.registerCommands\(\);\s*?\
Aak\.update\.automatic\(\);\s*?\
Aak\.listDetect\(\);\s*?\
Aak\.blockDetect\(\);\s*?\
\} else \{ \/\/ Native\s*?\
throw "Sorry\! No Native support\.\.";\s*?\
\}\s*?\
@//if (Aak.getScriptManager()) {\n\
Aak.registerCommands();\n\
Aak.update.automatic();\n\
Aak.listDetect();\n\
Aak.blockDetect();\n\
//} else { // Native\n\
// throw "Sorry! No Native support..";\n\
//}@i
Enable it on:
Code:
{+filter{fixantiadblockiller}}
.greasyfork.org/scripts/735-anti-adblock-killer-reek/code/
How does your filter.file look like as i do not run privoxy on windows
I guess the action.file do look the same?