implemented content blocking

This commit is contained in:
Fabian Freund
2024-06-19 21:08:18 +02:00
parent 2f6ae2684d
commit 2bacbbffd2
18 changed files with 1301 additions and 0 deletions
@@ -0,0 +1,21 @@
enum HostSource {
stevenBlackUnified(
'https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts',
),
stevenBlackFakeNews(
'https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-only/hosts',
),
stevenBlackSocial(
'https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/social-only/hosts',
),
stevenBlackGambling(
'https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/gambling-only/hosts',
),
stevenBlackPorn(
'https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/porn-only/hosts',
);
final String url;
const HostSource(this.url);
}