# Allow option for viewing custom menu links

- Added new 'Other' setting to toggle new tab visibility
- Added new Tab to show custom links
- Added icon asset for list
This commit is contained in:
herrrta
2024-11-28 22:01:11 -05:00
parent 3d8875208f
commit b41363d347
6 changed files with 129 additions and 1 deletions

View File

@@ -73,7 +73,8 @@ export type Settings = {
rewindSkipTime: number;
optimizedVersionsServerUrl?: string | null;
downloadMethod: "optimized" | "remux";
autoDownload: boolean;
autoDownload: boolean,
showCustomMenuLinks: boolean;
};
const loadSettings = (): Settings => {
@@ -103,6 +104,7 @@ const loadSettings = (): Settings => {
optimizedVersionsServerUrl: null,
downloadMethod: "remux",
autoDownload: false,
showCustomMenuLinks: false,
};
try {