Kleine Spielerei...
wer es mag, damit werden die installierten Erweiterungen durchnummeriert:
CSS
/*Nummerierung der installierten Erweiterungen*/
body {
counter-reset: section;
}
#main > div:nth-child(1) > addon-list:nth-child(1) > section:nth-child(2) > addon-card:nth-child(n+2) > div:nth-child(1) > div:nth-child(2)::before,
#main > div:nth-child(1) > addon-list:nth-child(1) > section:nth-child(3) > addon-card:nth-child(n+2) > div:nth-child(1) > div:nth-child(2)::before {
font-size:18px!important;
color: red !important;
font-weight: bold !important;
counter-increment: section;
content: counter(section)": ";
margin-left: -8px !important;
padding-right: 8px !important;
margin-top:4px!important;
}
addon-list addon-card > .addon.card {
width: 700px;
}
Alles anzeigen
Funktioniert bis einschl. Fx 72.
Die div. Werte müssen evtl. noch angepasst werden.