├── .github ├── ISSUE_TEMPLATE │ ├── config.yml │ ├── new_package_entry.yml │ ├── removal_problem_report.yml │ └── update_risk_level.yml ├── pull_request_template.md └── workflows │ ├── auto-generate-files.yml │ ├── build-release.yml │ └── gh-pages.yml ├── .gitignore ├── Asus ├── __init__.py ├── asus-bloatware-list.md ├── asus_remover.py └── asus_remover.sh ├── CONTRIBUTING.md ├── Google ├── __init__.py ├── google-bloatware-list.md ├── google_remover.py └── google_remover.sh ├── Honor ├── SHIZUKU_USAGE.md ├── honor-bloatware-list.md ├── honor_remover.py └── honor_remover.sh ├── Huawei ├── huawei-bloatware-list.md ├── huawei_remover.py └── huawei_remover.sh ├── Infinix ├── __init__.py ├── infinix-bloatware-list.md ├── infinix_remover.py └── infinix_remover.sh ├── LICENSE ├── Lenovo ├── __init__.py ├── lenovo-bloatware-list.md ├── lenovo_remover.py └── lenovo_remover.sh ├── Motorola ├── motorola-bloatware-list.md ├── motorola_remover.py └── motorola_remover.sh ├── Nothing ├── nothing-bloatware-list.md ├── nothing_remover.py └── nothing_remover.sh ├── OnePlus ├── oneplus-bloatware-list.md ├── oneplus_remover.py └── oneplus_remover.sh ├── Oppo ├── oppo-bloatware-list.md ├── oppo_remover.py └── oppo_remover.sh ├── README.md ├── Realme ├── realme-bloatware-list.md ├── realme_remover.py └── realme_remover.sh ├── SECURITY.md ├── Samsung ├── samsung-bloatware-list.md ├── samsung_remover.py └── samsung_remover.sh ├── Tecno ├── tecno-bloatware-list.md ├── tecno_remover.py └── tecno_remover.sh ├── Vivo ├── vivo-bloatware-list.md ├── vivo_remover.py └── vivo_remover.sh ├── WIFI_ADB_GUIDE.md ├── Xiaomi ├── xiaomi-bloatware-list.md ├── xiaomi_remover.py └── xiaomi_remover.sh ├── contribute.py ├── core ├── adb_utils.py ├── bloatware_remover.py └── package_registry.py ├── device_detector.py ├── generate_hashes.py ├── main.py ├── packages_registry.json ├── requirements-build.txt ├── requirements.txt ├── scripts ├── generate_brand_files.py ├── generate_data_bundle.py └── generators │ ├── adb.py │ ├── bash.py │ └── powershell.py ├── tests ├── __init__.py └── test_adb_utils.py ├── version.py └── web ├── .gitignore ├── README.md ├── index.html ├── package-lock.json ├── package.json ├── public └── data.json ├── src ├── App.css ├── App.jsx ├── components │ ├── FilterPanel.css │ ├── FilterPanel.jsx │ ├── Header.css │ ├── Header.jsx │ ├── PackageCard.css │ ├── PackageCard.jsx │ ├── SearchBar.css │ └── SearchBar.jsx ├── index.css └── main.jsx └── vite.config.js /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new_package_entry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/.github/ISSUE_TEMPLATE/new_package_entry.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/removal_problem_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/.github/ISSUE_TEMPLATE/removal_problem_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/update_risk_level.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/.github/ISSUE_TEMPLATE/update_risk_level.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/auto-generate-files.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/.github/workflows/auto-generate-files.yml -------------------------------------------------------------------------------- /.github/workflows/build-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/.github/workflows/build-release.yml -------------------------------------------------------------------------------- /.github/workflows/gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/.github/workflows/gh-pages.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/.gitignore -------------------------------------------------------------------------------- /Asus/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Asus/asus-bloatware-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/Asus/asus-bloatware-list.md -------------------------------------------------------------------------------- /Asus/asus_remover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/Asus/asus_remover.py -------------------------------------------------------------------------------- /Asus/asus_remover.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/Asus/asus_remover.sh -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Google/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Google/google-bloatware-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/Google/google-bloatware-list.md -------------------------------------------------------------------------------- /Google/google_remover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/Google/google_remover.py -------------------------------------------------------------------------------- /Google/google_remover.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/Google/google_remover.sh -------------------------------------------------------------------------------- /Honor/SHIZUKU_USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/Honor/SHIZUKU_USAGE.md -------------------------------------------------------------------------------- /Honor/honor-bloatware-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/Honor/honor-bloatware-list.md -------------------------------------------------------------------------------- /Honor/honor_remover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/Honor/honor_remover.py -------------------------------------------------------------------------------- /Honor/honor_remover.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/Honor/honor_remover.sh -------------------------------------------------------------------------------- /Huawei/huawei-bloatware-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/Huawei/huawei-bloatware-list.md -------------------------------------------------------------------------------- /Huawei/huawei_remover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/Huawei/huawei_remover.py -------------------------------------------------------------------------------- /Huawei/huawei_remover.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/Huawei/huawei_remover.sh -------------------------------------------------------------------------------- /Infinix/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Infinix/infinix-bloatware-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/Infinix/infinix-bloatware-list.md -------------------------------------------------------------------------------- /Infinix/infinix_remover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/Infinix/infinix_remover.py -------------------------------------------------------------------------------- /Infinix/infinix_remover.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/Infinix/infinix_remover.sh -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/LICENSE -------------------------------------------------------------------------------- /Lenovo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lenovo/lenovo-bloatware-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/Lenovo/lenovo-bloatware-list.md -------------------------------------------------------------------------------- /Lenovo/lenovo_remover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/Lenovo/lenovo_remover.py -------------------------------------------------------------------------------- /Lenovo/lenovo_remover.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/Lenovo/lenovo_remover.sh -------------------------------------------------------------------------------- /Motorola/motorola-bloatware-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/Motorola/motorola-bloatware-list.md -------------------------------------------------------------------------------- /Motorola/motorola_remover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/Motorola/motorola_remover.py -------------------------------------------------------------------------------- /Motorola/motorola_remover.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/Motorola/motorola_remover.sh -------------------------------------------------------------------------------- /Nothing/nothing-bloatware-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/Nothing/nothing-bloatware-list.md -------------------------------------------------------------------------------- /Nothing/nothing_remover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/Nothing/nothing_remover.py -------------------------------------------------------------------------------- /Nothing/nothing_remover.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/Nothing/nothing_remover.sh -------------------------------------------------------------------------------- /OnePlus/oneplus-bloatware-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/OnePlus/oneplus-bloatware-list.md -------------------------------------------------------------------------------- /OnePlus/oneplus_remover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/OnePlus/oneplus_remover.py -------------------------------------------------------------------------------- /OnePlus/oneplus_remover.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/OnePlus/oneplus_remover.sh -------------------------------------------------------------------------------- /Oppo/oppo-bloatware-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/Oppo/oppo-bloatware-list.md -------------------------------------------------------------------------------- /Oppo/oppo_remover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/Oppo/oppo_remover.py -------------------------------------------------------------------------------- /Oppo/oppo_remover.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/Oppo/oppo_remover.sh -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/README.md -------------------------------------------------------------------------------- /Realme/realme-bloatware-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/Realme/realme-bloatware-list.md -------------------------------------------------------------------------------- /Realme/realme_remover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/Realme/realme_remover.py -------------------------------------------------------------------------------- /Realme/realme_remover.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/Realme/realme_remover.sh -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Samsung/samsung-bloatware-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/Samsung/samsung-bloatware-list.md -------------------------------------------------------------------------------- /Samsung/samsung_remover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/Samsung/samsung_remover.py -------------------------------------------------------------------------------- /Samsung/samsung_remover.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/Samsung/samsung_remover.sh -------------------------------------------------------------------------------- /Tecno/tecno-bloatware-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/Tecno/tecno-bloatware-list.md -------------------------------------------------------------------------------- /Tecno/tecno_remover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/Tecno/tecno_remover.py -------------------------------------------------------------------------------- /Tecno/tecno_remover.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/Tecno/tecno_remover.sh -------------------------------------------------------------------------------- /Vivo/vivo-bloatware-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/Vivo/vivo-bloatware-list.md -------------------------------------------------------------------------------- /Vivo/vivo_remover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/Vivo/vivo_remover.py -------------------------------------------------------------------------------- /Vivo/vivo_remover.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/Vivo/vivo_remover.sh -------------------------------------------------------------------------------- /WIFI_ADB_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/WIFI_ADB_GUIDE.md -------------------------------------------------------------------------------- /Xiaomi/xiaomi-bloatware-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/Xiaomi/xiaomi-bloatware-list.md -------------------------------------------------------------------------------- /Xiaomi/xiaomi_remover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/Xiaomi/xiaomi_remover.py -------------------------------------------------------------------------------- /Xiaomi/xiaomi_remover.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/Xiaomi/xiaomi_remover.sh -------------------------------------------------------------------------------- /contribute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/contribute.py -------------------------------------------------------------------------------- /core/adb_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/core/adb_utils.py -------------------------------------------------------------------------------- /core/bloatware_remover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/core/bloatware_remover.py -------------------------------------------------------------------------------- /core/package_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/core/package_registry.py -------------------------------------------------------------------------------- /device_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/device_detector.py -------------------------------------------------------------------------------- /generate_hashes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/generate_hashes.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/main.py -------------------------------------------------------------------------------- /packages_registry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/packages_registry.json -------------------------------------------------------------------------------- /requirements-build.txt: -------------------------------------------------------------------------------- 1 | pyinstaller==5.13.0 2 | setuptools==68.0.0 -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/generate_brand_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/scripts/generate_brand_files.py -------------------------------------------------------------------------------- /scripts/generate_data_bundle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/scripts/generate_data_bundle.py -------------------------------------------------------------------------------- /scripts/generators/adb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/scripts/generators/adb.py -------------------------------------------------------------------------------- /scripts/generators/bash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/scripts/generators/bash.py -------------------------------------------------------------------------------- /scripts/generators/powershell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/scripts/generators/powershell.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_adb_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/tests/test_adb_utils.py -------------------------------------------------------------------------------- /version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/version.py -------------------------------------------------------------------------------- /web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/web/.gitignore -------------------------------------------------------------------------------- /web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/web/README.md -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/web/index.html -------------------------------------------------------------------------------- /web/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/web/package-lock.json -------------------------------------------------------------------------------- /web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/web/package.json -------------------------------------------------------------------------------- /web/public/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/web/public/data.json -------------------------------------------------------------------------------- /web/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/web/src/App.css -------------------------------------------------------------------------------- /web/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/web/src/App.jsx -------------------------------------------------------------------------------- /web/src/components/FilterPanel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/web/src/components/FilterPanel.css -------------------------------------------------------------------------------- /web/src/components/FilterPanel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/web/src/components/FilterPanel.jsx -------------------------------------------------------------------------------- /web/src/components/Header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/web/src/components/Header.css -------------------------------------------------------------------------------- /web/src/components/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/web/src/components/Header.jsx -------------------------------------------------------------------------------- /web/src/components/PackageCard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/web/src/components/PackageCard.css -------------------------------------------------------------------------------- /web/src/components/PackageCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/web/src/components/PackageCard.jsx -------------------------------------------------------------------------------- /web/src/components/SearchBar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/web/src/components/SearchBar.css -------------------------------------------------------------------------------- /web/src/components/SearchBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/web/src/components/SearchBar.jsx -------------------------------------------------------------------------------- /web/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/web/src/index.css -------------------------------------------------------------------------------- /web/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/web/src/main.jsx -------------------------------------------------------------------------------- /web/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PixelCode01/UIBloatwareRegistry/HEAD/web/vite.config.js --------------------------------------------------------------------------------