├── .gitignore ├── README.md ├── blacklists ├── BANNEDlist.json ├── NSFWlist.json └── OPlist.json ├── extension.js ├── lang └── en.json └── settingsOverview.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basicBot/custom/HEAD/README.md -------------------------------------------------------------------------------- /blacklists/BANNEDlist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basicBot/custom/HEAD/blacklists/BANNEDlist.json -------------------------------------------------------------------------------- /blacklists/NSFWlist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basicBot/custom/HEAD/blacklists/NSFWlist.json -------------------------------------------------------------------------------- /blacklists/OPlist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basicBot/custom/HEAD/blacklists/OPlist.json -------------------------------------------------------------------------------- /extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basicBot/custom/HEAD/extension.js -------------------------------------------------------------------------------- /lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basicBot/custom/HEAD/lang/en.json -------------------------------------------------------------------------------- /settingsOverview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basicBot/custom/HEAD/settingsOverview.md --------------------------------------------------------------------------------