is simple-adblock.com gone?

This commit is contained in:
jun7 2020-03-19 20:34:34 +09:00
parent 3da9e1bdeb
commit d59d1c1f9d
2 changed files with 6 additions and 2 deletions

View File

@ -22,8 +22,7 @@ copy the **easylist.txt** to ~/.config/wyebadblock/
wyebadblock only checks 'easylist.txt' wyebadblock only checks 'easylist.txt'
Testing element hiding is not supported though, You can check whether wyebab has found easylist.txt by `wyebab --css`
You can check whether it works on http://simple-adblock.com/faq/testing-your-adblocker/
## Addition for other webkit2gtk browsers ## Addition for other webkit2gtk browsers

5
ab.c
View File

@ -214,6 +214,11 @@ int main(int argc, char **argv)
else if (!strcmp(argv[1], "-css") || !strcmp(argv[1], "--css")) else if (!strcmp(argv[1], "-css") || !strcmp(argv[1], "--css"))
{ {
init(); init();
if (!initt)
{
g_print("#There is no "LISTNAME"\n");
exit(0);
}
g_thread_join(initt); g_thread_join(initt);
g_print("%s", tester->blockcss->str); g_print("%s", tester->blockcss->str);