mirror of
https://github.com/MuntashirAkon/android-debloat-list.git
synced 2025-10-10 06:57:23 +08:00
Add front-end for ADL
Signed-off-by: Muntashir Al-Islam <muntashirakon@riseup.net>
This commit is contained in:
1
browser/.gitignore
vendored
Normal file
1
browser/.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
book
|
9
browser/README.md
Normal file
9
browser/README.md
Normal 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
13
browser/book.toml
Normal 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
34
browser/custom.css
Normal 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;
|
||||
}
|
Reference in New Issue
Block a user