Für anderen Pfeil bei hover, du bist schon nah dran.
Könnte klappen ->
Oben im JS:
JavaScript
//Eigenes Icon erwartet in Profilordner/chrome/icons, icons Ordner falls noetig erstellen
//Eigene Icons eintragen, falls vorhanden
let ProfilePath = PathUtils.toFileURI(PathUtils.join(PathUtils.profileDir, 'chrome', 'icons'));
let icon1 = 'Folder.png'; // Custom Folder Icon
let icon2 = 'Link.png'; // Custom Link Icon
let iconPfeil = 'a_export.png'; // Custom Pfeil Icon
let iconPfeil_2 = 'a_import1.png'; // Custom Pfeil Icon hover
Im CSS:
CSS
/** Pfeil rechts eigenes Icon **/
menu.bookmark-item::after {
background-image: url("${ProfilePath}/${iconPfeil}") !important;
fill-opacity: 1 !important;
margin-right: 10px !important;
}
/** Pfeil rechts hover eigenes Icon **/
menu.bookmark-item:hover::after {
background-image: url("${ProfilePath}/${iconPfeil_2}") !important;
}