├── .gitignore ├── COPYING ├── Makefile ├── README ├── VERSION ├── abp_import.py ├── changelog ├── https_everywhere_import.py ├── make_deb.sh └── privoxy ├── config ├── debian └── control ├── default.action ├── default.filter ├── filters.c └── match-all.action /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvasile/freedombox-privoxy/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvasile/freedombox-privoxy/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvasile/freedombox-privoxy/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvasile/freedombox-privoxy/HEAD/README -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 3.0.19-2-1 2 | -------------------------------------------------------------------------------- /abp_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvasile/freedombox-privoxy/HEAD/abp_import.py -------------------------------------------------------------------------------- /changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvasile/freedombox-privoxy/HEAD/changelog -------------------------------------------------------------------------------- /https_everywhere_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvasile/freedombox-privoxy/HEAD/https_everywhere_import.py -------------------------------------------------------------------------------- /make_deb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvasile/freedombox-privoxy/HEAD/make_deb.sh -------------------------------------------------------------------------------- /privoxy/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvasile/freedombox-privoxy/HEAD/privoxy/config -------------------------------------------------------------------------------- /privoxy/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvasile/freedombox-privoxy/HEAD/privoxy/debian/control -------------------------------------------------------------------------------- /privoxy/default.action: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvasile/freedombox-privoxy/HEAD/privoxy/default.action -------------------------------------------------------------------------------- /privoxy/default.filter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvasile/freedombox-privoxy/HEAD/privoxy/default.filter -------------------------------------------------------------------------------- /privoxy/filters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvasile/freedombox-privoxy/HEAD/privoxy/filters.c -------------------------------------------------------------------------------- /privoxy/match-all.action: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvasile/freedombox-privoxy/HEAD/privoxy/match-all.action --------------------------------------------------------------------------------