-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdata.yml
2950 lines (2950 loc) · 71.5 KB
/
data.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
- name: accountabilitypal
url: http://www.accountabilitypal.org/
platform: linux network windows
audience: addict
cost: free
features: abandoned accountability defunct gateway incomplete monitoring opensource
icon:
description: Accountability Pal monitors Internet usage and sends e-mail reports
to accountability partners. It is designed to be run on a server. It is incomplete,
and was last updated in 2005.
- name: Accountable2You
url: https://accountable2you.com/
platform: android ios linux macosx windows
audience: addict parent
cost: "$7 / month"
features: accountability monitoring timer
icon: https://lh6.googleusercontent.com/-BhjARoRU0Xc/VHzImGaZwfI/AAAAAAAAABc/cwaNFOypo9c/w962-h962/AU2%2BLOGO_WHITE_2.png
description: Accountable2You originated as a personal replacement for other, slower,
accountability software and has since blossomed into a product in its own right. The
product site and product interface are quite nice.
- name: ActivityLogger
url: https://www.softactivity.com/
platform:
audience: authority
cost: "$199"
features:
icon:
description:
- name: ActivTrak
url: https://activtrak.com/
platform: macosx windows
audience: authority
cost: free to $15 / month / user
features: filtering monitoring screenshots
icon:
description:
- name: ADAMnetworks
url: https://adamnet.works/
platform: network
audience: parent spouse authority addict
cost: "$8 / month"
features: dns filtering
icon:
description: ADAMnetworks aims to keep people safe as they live and interact onlilne.
- name: Adblock Plus
url: https://addons.mozilla.org/en-US/firefox/addon/adblock-plus/
platform: browser
audience: antiad
cost:
features:
icon:
description:
- name: Adguard
url: https://adguard.com/
platform: android browser ios macosx network windows
audience: antiad parent general
cost: "$2.50 / month"
features: biglist filtering
icon:
description: Run by a large company
- name: Adult Blocker
url:
platform: browser
audience:
cost:
features: defunct
icon:
description:
- name: AhnLab SiteGuard
url:
platform:
audience:
cost:
features:
icon:
description:
- name: Anti-Porn Pro
url:
platform: browser
audience:
cost:
features: defunct
icon:
description:
- name: Anti-Porn Warning
url:
platform: browser
audience:
cost:
features: defunct
icon:
description:
- name: Aobo
url: https://www.amackeylogger.com/aobo-filter.html
platform: macosx windows
audience: parent addict general
cost: "$50 (free trial)"
features: defunct filtering monitoring
icon:
description:
- name: AppLock
url:
platform:
audience:
cost:
features:
icon:
description:
- name: Archangel
url: https://code.google.com/p/archangel/
platform:
audience:
cost: free
features: beta icap
icon:
description:
- name: Astaro - Parental Control for Wii
url:
platform:
audience:
cost:
features:
icon:
description:
- name: Atlas Web Browser
url: https://play.google.com/store/apps/details?id=nextapp.atlas
platform: android
audience: antiad hermit
cost:
features:
icon:
description: Can optionally use AdBlockPlus filters and optional low bandwidth (no-image
and no-javascript) mode.
- name: AVG Family Safety
url: https://www.avg.com/en-us/internet-security
platform: windows
audience: parent
cost: "$3 / month"
features: antivirus
icon:
description:
- name: baconreader
url:
platform:
audience:
cost:
features:
icon:
description:
- name: bark
url: https://www.bark.us/
platform: android ios
audience: parent
cost: "$7.50 / month"
features: monitoring social
icon:
description:
- name: BitDefender Internet Security
url: https://www.bitdefender.com/solutions/internet-security.html
platform: windows
audience: general
cost: "$70"
features: antivirus
icon:
description:
- name: Blacklist
url: https://itunes.apple.com/en/app/blacklist-website-blocker/id1081580076?mt=8
platform: ios
audience: slacker
cost:
features: defunct
icon:
description:
- name: BlockerX
url: https://play.google.com/store/apps/details?id=io.funswitch.blocker&hl=en_US
platform: android
audience: addict
cost:
features: filtering
icon:
description:
- name: Blocksi
url: https://blocksi.net/
platform: browser chrome chromeos
audience: authority parent
cost:
features: biglist cloud filtering
icon:
description: Blocksi is a Chrome and Chromebook product targeted at schools where
control and monitoring of Chromebooks is needed. It offers filtering, time management,
and trend analysis. It can also be installed as a standalone Chrome extension.
- name: Blocksi Router
url: https://www.blocksi.net/parental-control.php
platform: network
audience: parent general authority
cost: "$60 upfront + $30 / year after 2 free years"
features: biglist cloud filtering hardware monitoring
icon:
description: The Blocksi router is a physical device intended to be installed as
the network router at home for families.
- name: BlockSite
url: https://blocksite.co/
platform: browser chrome
audience: general parent
cost:
features: blacklist keyword password whitelist
icon:
description:
- name: Boomerang Parental Control
url: https://useboomerang.com/
platform: android
audience: parent
cost: "$16 / year to $31 / year"
features: filtering
icon:
description:
- name: Brightfilter Parental Control
url:
platform:
audience:
cost:
features:
icon:
description:
- name: BrowseControl
url: https://www.browsecontrol.com/
platform: windows
audience: authority
cost: "$80"
features: filtering monitoring
icon:
description:
- name: BSecure
url:
platform:
audience:
cost:
features: defunct
icon:
description:
- name: Buddy Browser
url: http://www.buddybrowser.com/Free-Parental-Controls.cfm
platform: macosx windows
audience: parent
cost:
features: defunct
icon:
description:
- name: BullGuard Internet Security
url: https://www.bullguard.com/
platform:
audience:
cost:
features: antivirus
icon:
description:
- name: ButterFly Browser
url: https://play.google.com/store/apps/details?id=acr.browser.butterfly
platform: android
audience: antiad
cost:
features: defunct
icon:
description: A minimalist browser that uses few system resources and that blocks
ads.
- name: CA Security Suite
url:
platform:
audience:
cost:
features:
icon:
description:
- name: Care4teen
url:
platform:
audience: parent
cost:
features: defunct
icon:
description:
- name: Cedar Creek Filtering
url: https://www.cedarcreek.co/filtering/personal
platform: network
audience: authority parent
cost: "$15 / month"
features: biglist dns filtering gateway hardware
icon:
description: The product is a physical router that "plugs in between your WiFi Router
and your internet provider's modem".
- name: CensureBlock
url:
platform: browser
audience:
cost:
features: defunct
icon:
description:
- name: Cenzor
url:
platform:
audience:
cost:
features:
icon:
description:
- name: Child Control
url: https://salfeld.com/en/
platform: windows
audience: parent
cost: "$30"
features: filtering monitoring timer
icon:
description:
- name: Circle
url: https://meetcircle.com/
platform: android ios network
audience: parent
cost: "$129 / year"
features: filtering hardware monitoring timer
icon:
description: Circle is a network device that filters all the devices on the network. It
is also an App on Android and iOS.
- name: Clean Internet
url: https://www.cleaninter.net/
platform: android windows
audience: parent general addict
cost: "$3-$5 / month"
features:
icon:
description: A Christian company that began in 1998.
- name: Clean Router
url: https://cleanrouter.com/features/
platform: network
audience: parent general
cost: "$10 - $15 / month"
features: dns filtering hardware monitoring smarts timer
icon: https://cleanrouter.com/purchase/logo-clean-router.png
description:
- name: CleanBrowsing
url: https://cleanbrowsing.org/
platform: android ios linux macosx network windows
audience: parent general
cost: free to $60 / year
features: dns filtering monitoring
icon:
description: Similar to the more well known OpenDNS, CleanBrowsing says their filters
are more strict and better for kids. Monitoring and custom filtering is available
with the paid plan(s).
- name: Cleanfeed
url:
platform:
audience: authority
cost:
features:
icon:
description:
- name: clearOS
url: https://www.clearcenter.com/
platform: network
audience: authority
cost: "$108 / year to $588 / year"
features: filtering gateway more
icon:
description: Aimed at businesses, governments, and schools, ClearOS is designed
to be installed on a router. clearOS sells switches with ClearOS installed and
calls them "appliances". It is very similar to DansGuardian.
- name: ClearPlay
url: https://www.clearplay.com/
platform: android
audience: parent addict
cost: "$8 / month"
features:
icon:
description: ClearPlay is a service that filters out violence and sexual content
from content purchased or rented on GooglePlay, or from special Blu-ray or DVD
players.
- name: Cloudflare 1.1.1.1 for families
url: https://one.one.one.one/family/
platform: network
audience: parent
cost: free
features: dns filtering
icon:
description: Malware and/or Adult Content Blocking by Cloudflare.
- name: CloudVeil
url: https://www.cloudveil.org/
platform: android ios macosx windows
audience:
cost: "$5 / month"
features:
icon:
description:
- name: Cold Turkey
url: https://getcoldturkey.com/
platform: windows
audience: addict slacker
cost: free to $39
features: dns filtering timer
icon:
description: Cold Turkey is a relatively simple filter designed to support self-control
by allowing the end-user to configure times of the week during which to block
access to certain websites.
- name: Computer Cop
url: https://www.computercop.com/
platform:
audience: authority
cost:
features: monitoring spying
icon:
description:
- name: ComputerTime
url: http://www.softwaretime.com/computertime/
platform: windows
audience: parent
cost: "$40"
features: timer
icon:
description:
- name: Content Cleaner
url: https://www.contentpurity.com/
platform: windows
audience:
cost: "$20"
features: scuzzy skin
icon:
description: Detects and removes porn from hard drive.
- name: Content Protect Pro
url: https://www.contentwatch.com/products/contentprotect_pro
platform: android macosx network windows
audience: authority
cost: "$40"
features: filtering
icon:
description:
- name: ContentBarrier
url: https://www.intego.com/manuals/en/cb/1-welcome-to-contentbarrier.html
platform: macosx
audience: parent general
cost:
features: filtering monitoring spying
icon:
description:
- name: ContentProtect
url:
platform: android windows
audience: authority
cost: "$40 / year"
features:
icon:
description: ContentProtect is Net Nanny for businesses.
- name: Covenant Eyes
url: https://www.covenanteyes.com/
platform: android ios macosx windows
audience: addict parent general
cost: "$16 / month"
features: accountability filtering image_recognition monitoring timer
icon: https://www.covenanteyes.com/lemonade/wp-content/themes/JohnWayne/images/[email protected]
description: CovenantEyes has a beautiful website with a lot of articles about pornography. The
site seems to target porn addicts and concerned parents with roughly equal emphasis. The
focus (and strength) of the software is accountability rather than filtering.
- name: CurrentWare Suite
url: https://www.currentware.com/
platform:
audience: authority
cost: "$500 for 5 computers, variable"
features: biglist filtering
icon:
description: The suite includes Includes AccessPatrol, BrowseControl, BrowseReporter,
and enPowerManager. The products are sold to employers who want to control and
monitor employees.
- name: CustomBlocker
url: https://chrome.google.com/webstore/detail/customblocker/elnfhbjabfcepfnaeoehffgmifcfjlha
platform: browser chrome
audience: general
cost:
features:
icon:
description: CustomBlocker filters any element on any web site with any condition
with XPath and RegExp.
- name: CyberPatrol Parental Controls
url: https://www.cyberpatrol.com/home/
platform: windows
audience: authority parent
cost: "$40 / year"
features: defunct filtering games monitoring timer
icon:
description: Became part of Net Nanny
- name: CyberSentinel
url:
platform:
audience: parent
cost:
features: defunct
icon:
description:
- name: Cybersieve
url:
platform:
audience:
cost:
features:
icon:
description:
- name: CyberSitter
url: https://www.27labs.com/
platform: windows
audience: parent authority
cost: "$40"
features: filtering
icon:
description:
- name: Cybersitterlists
url:
platform: network
audience: authority parent general
cost: "$80 for Simple DNS + $39 / year"
features: biglist defunct filtering gateway monitoring
icon:
description: Designed to be used with the Simple DNS Plus (a DNS server), it is
similar in approach to OpenDNS and NX Filter. The 5 CYBERsitter lists are adult,
malicious, k12, k12fun, and social networking.
- name: Cyclope-Series
url: https://www.cyclope-series.com/
platform:
audience: authority
cost:
features:
icon:
description:
- name: DansGuardian
url: https://sourceforge.net/projects/dansguardian/
platform: linux macosx network
audience: authority
cost: free
features: abandoned defunct filtering gateway historic more password proxy ratings
smarts
icon:
description: DansGuardian is/was a content filtering proxy that works in conjunction
with another caching proxy such as Squid or Oops. It seems to be targeted primarily
toward filtering internet content for organizations such as schools. The last
release was in 2013. See E2guardian.
- name: Davide
url:
platform:
audience:
cost:
features:
icon:
description:
- name: DETOXIFY
url: https://play.google.com/store/apps/details?id=com.familyfirsttechnology.pornblocker
platform: android
audience: addict
cost: "$5 / month"
features: filtering
icon:
description:
- name: Disconnect
url: https://disconnect.me
platform: browser chrome
audience: general
cost:
features:
icon:
description:
- name: Distractus
url:
platform: browser
audience:
cost:
features: defunct
icon:
description: Distractus is a simple Firefox addon that allows the user to whitelist
and blacklist sites using regular expression matching.
- name: DNS Angel
url: https://www.sordum.org/8127/dns-angel-v1-6/
platform: windows
audience:
cost:
features: meh
icon:
description:
- name: dnscloak
url: https://apps.apple.com/us/app/dnscloak-secure-dns-client/id1452162351
platform: ios
audience: general
cost:
features: filtering
icon:
description: Can be used in combination with DNS filtering services such as CleanBrowsing,
Norton ConnectSafe, nxFilter, OpenDNS, Safesurfer, and the like to provide filtering.
- name: DNSthingy
url: https://www.dnsthingy.com/
platform: network
audience: parent authority general addict
cost: "$8 / month"
features: defunct
icon:
description: DNSthingy is for Canadians, users of Clear OS, or those willing to
flash their home router. It became ADAMnetworks in April, 2019.
- name: Dolphin Secure
url:
platform:
audience:
cost:
features:
icon:
description:
- name: E2guardian Web filtering
url: http://e2guardian.org/cms/
platform:
audience: authority parent
cost:
features: filtering gateway more proxy ratings smarts
icon:
description: e2guardian is a fork and continuation of DansGuardian. It is an open
source web content filter that filters based on many methods including phrase
matching, request header, URL filtering, etc. Unlike DansGuardian, e2guardian
has some support for https filtering, if the necessary authoritative certificates
are installed in the browser.
- name: emypeople.net
url: http://www.emypeople.net/
platform:
audience:
cost: "$2 - $20 / month"
features:
icon:
description: A very small ISP with a mishmash of filtering services for the very
conservative. The SafeSentryPro platform does html filtering.
- name: Enologic Net Filter
url:
platform:
audience:
cost:
features:
icon:
description:
- name: ENUFF PC
url: http://www.akrontech.com/
platform:
audience: parent
cost:
features: defunct timer
icon:
description:
- name: eSafely (netspark)
url: https://esafely.com/
platform: browser
audience: parent
cost: free
features: defunct
icon:
description:
- name: eScan
url:
platform:
audience:
cost:
features:
icon:
description:
- name: ESET Smart Security
url: https://www.eset.com/
platform:
audience: authority
cost:
features: antivirus
icon:
description:
- name: EverAccountable
url: https://everaccountable.com/
platform: android windows
audience: addict spouse
cost: "$7 / month"
features: monitoring
icon:
description:
- name: eVision
url: http://www.evisionglobal.com/
platform:
audience:
cost:
features: defunct skin
icon:
description: Launched in 2001 and last updated in September 2001, this appears to
be a defunct project.
- name: Family Cyber Alert
url:
platform:
audience:
cost:
features: defunct monitoring
icon:
description:
- name: Family Link
url: https://families.google.com/familylink/
platform: android ios
audience: parent
cost: free
features: monitoring timer
icon:
description: Made by Google. Works on Android Nougat 7.0 or higher.
- name: Familyloop Safeguard
url:
platform:
audience: parent
cost: "$5 / month for 3 devices"
features: defunct filtering monitoring
icon:
description:
- name: FamiSafe
url: https://famisafe.wondershare.com/
platform: android ios kindle
audience: parent
cost: "$5 / month"
features: filtering monitoring timer
icon:
description:
- name: FB Limiter
url:
platform: windows
audience:
cost: free to $15
features: defunct
icon:
description:
- name: Fiddler
url: http://www.telerik.com/fiddler
platform:
audience: developer
cost:
features:
icon:
description: A free web debugging proxy, this product is aimed at web developers,
not general Internet consumers. Fiddler sets itself up as a WinINET Proxy [see
http://msdn.microsoft.com/en-us/library/windows/desktop/aa384075(v=vs.85).aspx
], so it intercepts traffic from all applications that use WinINET (IE, Office). It
is more useful for developing a web application and web server; it is not a consumer-oriented
filter.
- name: Filter Chrome
url: https://filterchrome.com/
platform: android
audience: addict parent slacker
cost: free to $5 / month
features: applock filtering timer
icon:
description: Filter Chrome has free and premium (aka freemium) feature sets.
- name: Filter Pak
url:
platform:
audience:
cost:
features:
icon:
description:
- name: FilterGate
url:
platform:
audience:
cost:
features: defunct
icon:
description:
- name: FilterPak
url: http://www.s4f.com/cgi-sys/suspendedpage.cgi
platform: windows
audience: parent addict
cost: unknown
features: accountability biglist defunct filtering monitoring
icon:
description:
- name: FinFisher
url:
platform:
audience: authority
cost:
features:
icon:
description:
- name: FlashStart
url: https://www.flashstart.com/
platform:
audience: authority
cost:
features:
icon:
description:
- name: Focus
url: https://heyfocus.com/
platform: macosx
audience: slacker general
cost: "$20"
features: timer
icon:
description:
- name: Focus 45
url:
platform: browser chrome
audience: slacker
cost:
features:
icon:
description:
- name: FocusMe
url: https://focusme.com/
platform: android macosx windows
audience: slacker
cost: "$6 / month"
features: filtering timer
icon:
description:
- name: Forcefield
url: https://forcefield.me
platform:
audience: parent
cost: "$12 / month"
features: defunct
icon:
description:
- name: Forest
url: https://www.forestapp.cc/en/
platform: android browser ios windows
audience: slacker
cost:
features:
icon:
description:
- name: Forticlient
url: https://forticlient.com/
platform:
audience:
cost:
features:
icon:
description:
- name: Fortify
url: https://fortifyprogram.org/
platform: android ios macosx windows
audience: addict
cost: free for youth, $39 for adults
features: education friends gamification
icon: https://fortifyprogram.org/assets/images/fortify-logo.svg
description: Fortify is not a filter, but it is similar enough to warrant inclusion
here. Instead of filtering or monitoring, it aims to educate and support a porn
user as he/she moves toward that goal.
- name: FoxFilter
url: http://addons.mozilla.org/en-US/firefox/addon/foxfilter/
platform: browser
audience: parent general authority
cost: free to $15 / year
features: filtering keyword
icon:
description: FoxFilter is an add-on to Firefox and Chrome designed to "protect children
and teens from inappropriate content on the Web." It only works in Firefox and
Chrome.
- name: Fragfinn.de
url:
platform:
audience:
cost:
features:
icon:
description:
- name: Freedom
url: https://freedom.to/
platform: android chromeos ios macosx windows
audience: slacker
cost: "$2 / month to $7 / month"
features: filtering timer
icon:
description: Formerly called Anti-Social Pro, the software is marketed towareds
those seeking to avoid the distractions of the Internet.
- name: FreeFiltering
url: https://freefiltering.org/
platform: network
audience: parent
cost: free to $20/month
features: dns filtering
icon:
description: The company offers dns-based filtering if one registers with name,
email, mobile phone number, and agrees to receive telemarketing calls. In addition
to blocking porn, it also blocks pro-LGBTQ and pro-abortion sites.
- name: FSecure
url: https://www.f-secure.com/en/web/home_global/home
platform: windows
audience: general parent
cost:
features: antivirus
icon:
description:
- name: Funamo
url: https://www.funamo.com/
platform: android
audience: parent
cost:
features: filtering games monitoring timer
icon:
description:
- name: Gaggle
url: https://www.gaggle.net/
platform: network
audience: authority
cost:
features:
icon:
description: Intended for schools
- name: GateSentry
url:
platform:
audience:
cost:
features:
icon:
description:
- name: GenTech
url: https://gentechsolution.com/
platform: android ios
audience:
cost: "$100 / year to $125 / year"
features: filter image_recognition scuzzy smarts
icon:
description: Supposedly designed with the "frum" community in mind. Yet, it was
built in Romania and seems to be sold to employers.
- name: Geringo
url: https://www.geringo.com/
platform:
audience:
cost:
features: vapor
icon:
description:
- name: Gnome nanny
url:
platform:
audience:
cost:
features: defunct
icon:
description:
- name: GodSaves.tk Anti-Porn
url:
platform: browser
audience:
cost:
features: defunct
icon:
description:
- name: goguardian
url: https://www.goguardian.com/
platform:
audience: authority
cost:
features:
icon:
description:
- name: Google Play Store
url:
platform:
audience:
cost:
features:
icon:
description: Go to Play Store Settings. Select Content Filtering. Choose the maturity
level as per you choice. -- http://www.lifehack.org/articles/technology/20-google-play-store-tips-and-tricks-you-cant-miss.html
- name: Green Dam Youth Escort (Mainland Chinese Government mandated software)
url:
platform:
audience:
cost:
features:
icon:
description:
- name: Habitica
url: https://habitica.com/
platform: ios
audience:
cost:
features: accountability gamification
icon:
description: A to-do app that helps the user form good habits. Its tagline is 'gamify
your life'
- name: Handy Filter
url: https://www.hugedomains.com/domain_profile.cfm?d=handyfilter&e=com
platform:
audience: authority general
cost: free
features: defunct filtering monitoring
icon:
description: Originally developed for Internet Cafes in Turkey.
- name: Hidetools Spy Monitor
url: http://www.topshareware.com/Hidetools-Spy-Monitor-download-62604.htm
platform: windows
audience:
cost: "$40"
features: scuzzy spying
icon:
description:
- name: HomeGuard