├── .gitattributes ├── .github ├── CODE_OF_CONDUCT.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md └── README.md ├── .gitignore ├── LICENSE ├── arminc-ublock-backup.txt └── arminc_ublock_settings.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armync/ArminC-uBlock-Settings/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armync/ArminC-uBlock-Settings/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armync/ArminC-uBlock-Settings/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armync/ArminC-uBlock-Settings/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armync/ArminC-uBlock-Settings/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armync/ArminC-uBlock-Settings/HEAD/.github/README.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armync/ArminC-uBlock-Settings/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armync/ArminC-uBlock-Settings/HEAD/LICENSE -------------------------------------------------------------------------------- /arminc-ublock-backup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armync/ArminC-uBlock-Settings/HEAD/arminc-ublock-backup.txt -------------------------------------------------------------------------------- /arminc_ublock_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armync/ArminC-uBlock-Settings/HEAD/arminc_ublock_settings.png --------------------------------------------------------------------------------