Add front-end for ADL

Signed-off-by: Muntashir Al-Islam <muntashirakon@riseup.net>
This commit is contained in:
Muntashir Al-Islam
2025-03-14 15:25:53 -07:00
parent 3bcfb42f01
commit fad8f99592
6 changed files with 193 additions and 0 deletions

1
browser/.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
book

9
browser/README.md Normal file
View File

@@ -0,0 +1,9 @@
# Welcome!
This website acts as a front-end for the [Android Debloat List](https://github.com/MuntashirAkon/android-debloat-list) (ADL) project and is intended to serve as an always available wiki for the pre-installed applications on Android, commonly known as "bloatware". You can utilize the search button or the sidebar to navigate through the bloatware (requires JavaScript), or you can just append `/bloatware/<package-name>.html` to the homepage URL to navigate to the desired bloatware if available. Each page also has an "Open in App Manager" link that you can follow to view the app info of the selected app (if installed).
## Alternative Front-ends
Here's a list of alternative front-ends that make use of the ADL project:
- [App Manager](https://github.com/MuntashirAkon/AppManager)

13
browser/book.toml Normal file
View File

@@ -0,0 +1,13 @@
[book]
authors = ["Muntashir Al-Islam"]
language = "en"
multilingual = false
src = "src"
title = "Android Debloat List"
[output.html]
preferred-dark-theme = "ayu"
additional-css = ["custom.css"]
smart-punctuation = true
no-section-label = true
site-url = "/android-debloat-list/"

34
browser/custom.css Normal file
View File

@@ -0,0 +1,34 @@
.tags ul {
list-style-type: none;
padding: 0;
margin: 0;
display: flex;
gap: 10px;
}
.tags ul > li {
border: 1px solid;
padding: 4px 16px;
border-radius: 16px;
font-size: small;
}
.tags ul > li[data-tag=delete] {
color: green;
}
.tags ul > li[data-tag=replace] {
color: purple;
}
.tags ul > li[data-tag=caution] {
color: orange;
}
.tags ul > li[data-tag=unsafe] {
color: red;
}
.refs {
margin-block-start: unset;
}