├── .gitignore ├── LICENSE ├── README.md ├── install.py └── scripts ├── __pycache__ └── denoise.cpython-310.pyc └── denoise.py /.gitignore: -------------------------------------------------------------------------------- 1 | **scripts/__pycache__/ 2 | **dist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogodr/AdverseCleanerExtension/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogodr/AdverseCleanerExtension/HEAD/README.md -------------------------------------------------------------------------------- /install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogodr/AdverseCleanerExtension/HEAD/install.py -------------------------------------------------------------------------------- /scripts/__pycache__/denoise.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogodr/AdverseCleanerExtension/HEAD/scripts/__pycache__/denoise.cpython-310.pyc -------------------------------------------------------------------------------- /scripts/denoise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogodr/AdverseCleanerExtension/HEAD/scripts/denoise.py --------------------------------------------------------------------------------