mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-11-04 21:22:45 +08:00
21 lines
677 B
JavaScript
21 lines
677 B
JavaScript
(() =>
|
|
{
|
|
return (settings, resources) =>
|
|
{
|
|
if (settings.useNewStyle)
|
|
{
|
|
// const sliceCount = Object.keys(resources.data)
|
|
// .filter(k => k.indexOf("darkStyleSlice") !== -1).length;
|
|
// for (let i = sliceCount; i > 0; i--)
|
|
// {
|
|
// resources.applyStyle(`darkStyleSlice${i}`, `bilibili-new-style-dark-slice-${i}`);
|
|
// }
|
|
resources.applyStyle("darkStyle", "bilibili-new-style-dark");
|
|
resources.applyImportantStyle("darkStyleImportant", "bilibili-new-style-dark-important");
|
|
}
|
|
return {
|
|
ajaxReload: false
|
|
};
|
|
};
|
|
})();
|