Watches Favorites Viewer

Scans the Favorites of your Watches for new Favorites and shows a Button to view these (if any where found). (Works like Submission Page)

目前为 2023-05-15 提交的版本。查看 最新版本

// ==UserScript==
// @name        Watches Favorites Viewer
// @namespace   Violentmonkey Scripts
// @match       *://*.furaffinity.net/*
// @require     https://cdnjs.cloudflare.com/ajax/libs/lz-string/1.4.4/lz-string.min.js
// @grant       none
// @version     1.0
// @author      Midori Dragon
// @description Scans the Favorites of your Watches for new Favorites and shows a Button to view these (if any where found). (Works like Submission Page)
// @icon        https://www.furaffinity.net/themes/beta/img/banners/fa_logo.png?v2
// @homepageURL https://greasyfork.org/de/scripts/463464-watches-favorites-viewer-beta
// @supportURL  https://greasyfork.org/de/scripts/463464-watches-favorites-viewer-beta/feedback
// @license     MIT
// ==/UserScript==

// jshint esversion: 8

//User Options:
let showLoadLastXFavsButton = JSON.parse(localStorage.getItem("wfsetting_01")) || true;
let maxFavsLength = +localStorage.getItem("wfsetting_02") || 100;

if (window.parent !== window) return;
console.info("%cRunning: Watches Favorite Viewer", "color: blue");

let lastFavs = {};
let _running = false;
let exButtonsShown = false;
let firstStart = false;
let wfButton;

let currentLength = 0;
let totalLength = 0;
let percent = 0;

let excludedUsers = JSON.parse(localStorage.getItem("excludedUsers")) || [];
let clicked = JSON.parse(localStorage.getItem("clicked")) || false;
let exSettings = JSON.parse(localStorage.getItem("wfsettings")) || false;

Object.defineProperty(window, "running", {
  get() {
    return _running;
  },
  set(value) {
    _running = value;
    wfButton.setAttribute("loading", value);
    if (running) {
      localStorage.setItem("wfloadingstate", "running");
    } else {
      localStorage.setItem("wfloadingstate", "finished");
      localStorage.removeItem("wfloadingusers");
      localStorage.removeItem("wfloadingpercent");
    }
  },
});

// Set state to interrupted if tab is closed while running
window.addEventListener("beforeunload", () => {
  if (running) localStorage.setItem("wfloadingstate", "interrupted");
});

if (window.location.toString().includes("buddylist")) {
  const controlPanel = document.getElementById("controlpanelnav");
  controlPanel.innerHTML += "<br><br>";
  const showExButton = document.createElement("button");
  showExButton.type = "button";
  showExButton.className = "button standard mobile-fix";
  showExButton.textContent = exButtonsShown ? "Hide WF Buttons" : "Show WF Buttons";
  showExButton.onclick = function () {
    exButtonsShown = !exButtonsShown;
    showExButton.textContent = exButtonsShown ? "Hide WF Buttons" : "Show WF Buttons";
    exButtonsShown ? addExcludeButtons() : removeExcludeButtons();
  };
  controlPanel.appendChild(showExButton);
}

if (!JSON.parse(localStorage.getItem("lastFavs"))) firstStart = true;

if (!clicked) createWFButton();

if (window.location.toString().includes("submissions") && clicked) {
  localStorage.setItem("clicked", false.toString());
  createWFDocument();
}

addExSettings();
if (window.location.toString().includes("controls/settings")) {
  addExSettingsSidebar();
  if (exSettings) createSettings();
}

// Add exclude buttons
async function addExcludeButtons() {
  // Wait for buddylist to load
  await waitForBuddyListOnePageReady();
  const watchers = document.querySelectorAll("div.flex-item-watchlist.aligncenter");

  for (const watcher of watchers) {
    const user = watcher.querySelector("a[href]");
    const username = user.href.substring(user.href.lastIndexOf("/") + 1, user.href.length - 1);

    const excludeButton = document.createElement("button");
    excludeButton.id = "excludeButton_" + username;
    excludeButton.type = "button";
    excludeButton.className = "button standard mobile-fix";
    excludeButton.textContent = excludedUsers.includes(username) ? "^ WF Include ^" : "^ WF Exclude ^";
    excludeButton.addEventListener("click", () => toggleExcludeUser(user, excludeButton));

    watcher.style.paddingBottom = "18px";
    watcher.appendChild(excludeButton);
  }
}

// Remove exclude buttons
async function removeExcludeButtons() {
  let buttons = document.querySelectorAll("button[id^=excludeButton]");
  for (const button of buttons) {
    button.parentNode.style.paddingBottom = "";
    button.parentNode.removeChild(button);
  }
}

// Toggle exclude user
async function toggleExcludeUser(user, button) {
  const username = user.href.substring(user.href.lastIndexOf("/") + 1, user.href.length - 1);

  if (excludedUsers.includes(username)) {
    // Remove user from excludedUsers
    excludedUsers = excludedUsers.filter((name) => name !== username);
    if (button) button.textContent = "^ WF Exclude ^";
    console.log('Including: "' + username + '"');
  } else {
    // Add user to excludedUsers
    excludedUsers.push(username);
    if (button) button.textContent = "^ WF Include ^";
    console.log('Excluding: "' + username + '"');
  }

  localStorage.setItem("excludedUsers", JSON.stringify(excludedUsers));
}

// Creating the WFButton and loading the favs
async function createWFButton() {
  // Create WFButton
  wfButton = document.createElement("a");
  wfButton.id = "wfButton";
  wfButton.className = "notification-container inline";
  wfButton.title = "Watches Favorites Notifications";
  wfButton.style.cursor = "pointer";
  const messageBar = document.getElementsByClassName("message-bar-desktop")[0];
  messageBar.appendChild(wfButton);

  lastFavs = JSON.parse(localStorage.getItem("lastFavs"));

  // Check loadingstate and wait for other instance to finish
  let newFavs;
  let finished = false;
  let intSavedUsers;
  const state = localStorage.getItem("wfloadingstate");
  if (state && state !== "finished") {
    console.log("Other WF instance found copying...");
    let status = await waitForOtherInstance();
    finished = status.successfull;
    intSavedUsers = status.intSavedUsers || [];
  }

  running = true;

  if (finished) {
    // Load finished favs
    newFavs = JSON.parse(await decompressString(localStorage.getItem("wfloading")));
  } else {
    // Load new favs
    newFavs = await loadUnreadFavsAll(maxFavsLength, intSavedUsers);
    newFavs = Array.from(newFavs);
    newFavs = newFavs.map((newFav) => newFav.outerHTML);
  }

  // Update WFButton
  const totalLength = newFavs.length;
  if (totalLength !== 0) {
    wfButton.addEventListener("click", loadWFDocument);
    wfButton.textContent = `${totalLength}WF`;
  } else if (firstStart) {
    // Replace WFButton with Ready Text
    wfButton.textContent = "WF Ready";
    wfButtonClone = wfButton.cloneNode(true);
    wfButtonClone.setAttribute("loading", false);
    wfButtonClone.addEventListener("click", () => { location.reload(); });
    wfButton.parentNode.replaceChild(wfButtonClone, wfButton);
  } else {
    wfButton.parentNode.removeChild(wfButton);
  }

  // Compress and save new favs
  const favsComp = await compressString(JSON.stringify(newFavs));
  localStorage.setItem("favs", favsComp);

  console.log("Finished scanning");
  console.log(`There are "${totalLength}" unseen Favs`);
  running = false;

  // Show last XFavs button if there are no new favs
  if (totalLength === 0 && !firstStart && showLoadLastXFavsButton) {
    createLastXFavsButton();
  }

  firstStart = false;
}

// Waiting for other WF instance
async function waitForOtherInstance() {
  return new Promise((resolve, reject) => {
    // Get current loadingstate
    let state = localStorage.getItem("wfloadingstate");
    if (state === null) {
      resolve({ successfull: false });
      return;
    }
    let lpercent = 0;
    let intSavedUsers = [];

    // Check loadingstate
    const intervalId = setInterval(() => {
      state = localStorage.getItem("wfloadingstate");
      if (state === "finished") {
        clearInterval(intervalId);
        resolve({ successfull: true });
      } else if (state === "interrupted") {
        clearInterval(intervalId);
        intSavedUsers = JSON.parse(localStorage.getItem("wfloadingusers")) || [];
        resolve({ successfull: false, intSavedUsers: intSavedUsers });
      } else {
        percent = localStorage.getItem("wfloadingpercent");
        if (percent !== lpercent) {
          lpercent = percent;
          console.log(`Copying: ${percent}%`);
          wfButton.textContent = `WF: ${percent}%`;
        }
      }
    }, 100);
  });
}

// Loads the WFDocument
async function loadWFDocument() {
  localStorage.setItem("lastFavs", JSON.stringify(lastFavs));
  localStorage.setItem("clicked", true.toString());

  window.location.href = "https://www.furaffinity.net/msg/submissions/";
}

// Creating the WFDocument to view the favs
async function createWFDocument() {
  const standardPage = document.getElementById("standardpage");
  const messageCenter = document.getElementById("messagecenter-submissions");

  const emptyElem = messageCenter.querySelector('div[class="no-messages"]');
  if (emptyElem) emptyElem.remove();

  const header = standardPage.querySelector('div[class="section-header"] h2');
  header.textContent = "Watches Favorites";

  const oldNewButtonsButtonsTop = standardPage.querySelector('div[class="aligncenter"][style]');
  oldNewButtonsButtonsTop.remove();

  const selectionButtons = standardPage.querySelector('button[class="standard check-uncheck"]').parentNode.parentNode.parentNode;
  selectionButtons.remove();

  const oldNewButtonsBottom = messageCenter.parentNode.querySelector('div[class="aligncenter"]');
  oldNewButtonsBottom.remove();

  const galleries = document.querySelectorAll('div[class="notifications-by-date"]');
  galleries.forEach((gallery) => gallery.remove());

  let gallery = document.getElementById("gallery-0");
  if (!gallery) {
    gallery = document.createElement("section");
    gallery.id = "gallery-0";
    gallery.className = "gallery messagecenter with-checkboxes s-250";
    messageCenter.appendChild(gallery);
  }
  gallery.innerHTML = "";

  const favsDecomp = await decompressString(localStorage.getItem("favs"));
  const figures = JSON.parse(favsDecomp);
  const parser = new DOMParser();
  const figureElements = figures.map((figure) => parser.parseFromString(figure, "text/html").body.firstChild);
  console.log(`Loading "${figureElements.length}" figures`);

  figureElements.forEach((figure) => gallery.appendChild(figure));
}

// Loading all unseen favs
async function loadUnreadFavsAll(maxFavsLength, intSavedUsers = []) {
  // Getting watchers
  const watchers = await getWatchers();
  totalLength = watchers.length;
  console.log(`You are watching "${totalLength}" people`);
  console.log("Scanning for unseen Favs...");

  // Getting lastFavs
  let progress = { newFavs: [], percent: 0, intSavedUsers: intSavedUsers, currScanFavs: [] };
  let newFavsAll = [];
  let promises = [];
  let semaphore = new Semaphore(2);
  for (const watcher of watchers) {
    promises.push(
      semaphore.acquire().then(async () => {
        try {
          const watcherLink = watcher.querySelector("a").href;
          if (!intSavedUsers.includes(watcherLink)) {
            // Getting newFavs from watcher
            progress = await getUnreadFavsWatcher(watcherLink, maxFavsLength, progress);
            if (progress.newFavs) {
              newFavsAll = newFavsAll.concat(progress.newFavs);
            }

            // Updating WF Button prefix
            if (firstStart) {
              wfButton.textContent = `WF Initializing: ${percent.toFixed(2)}%`;
            } else {
              wfButton.textContent = `WF: ${percent.toFixed(2)}%`;
            }
          }
        } catch (error) {
          console.error(error);
        }
        finally {
          semaphore.release();
        }
      })
    );
  }
  await Promise.all(promises);

  // Updating firstStart
  if (firstStart) {
    localStorage.setItem("lastFavs", JSON.stringify(lastFavs));
    newFavsAll = [];
  }
  totalLength = 0;

  return newFavsAll;
}

async function getWatchers() {
  let watchers = [];
  let prevWatchers;
  for (let i = 1; true; i++) {
    // Getting watchers html from page i
    const watchersDoc = await getHTML(`https://www.furaffinity.net/controls/buddylist/${i}/`);
    const nextWatchers = Array.from(watchersDoc.querySelectorAll('div[class="flex-item-watchlist aligncenter"]'));
    if (prevWatchers && prevWatchers[prevWatchers.length - 1].outerHTML == nextWatchers[nextWatchers.length - 1].outerHTML) break;
    prevWatchers = nextWatchers;
    watchers.push(...nextWatchers);
  }
  return watchers;
}

// Getting newFavs from a specific watcher
async function getUnreadFavsWatcher(watcher, maxFavsLength, progress, ignoreLastSeen = false) {
  // Getting username from watcher
  let user = watcher.substring(0, watcher.length - 1);
  user = user.substring(user.lastIndexOf("/"), user.length);
  user = user.substring(1, user.length);

  // Calculating current percent
  percent = (currentLength / totalLength) * 100;
  currentLength++;

  // Checking if user is excluded
  if (excludedUsers.includes(user)) {
    console.log(`${percent.toFixed(2)}% | ${user} is excluded`);
    return { intSavedUsers: progress.intSavedUsers, currScanFavs: progress.currScanFavs };
  } else {
    console.log(`${percent.toFixed(2)}% | ${user}`);
  }

  // Getting fav figures from user
  const figuresAll = await getUserFavFigures(user, maxFavsLength, ignoreLastSeen);

  // Exclude user if no images found
  if (figuresAll && figuresAll === "no-images") {
    console.log(user + " gets excluded");
    let excludeButton = document.getElementById("excludeButton_" + user);
    //excludeUser(watcher, excludeButton);
    return { intSavedUsers: progress.intSavedUsers, currScanFavs: progress.currScanFavs };
  }

  // Changing Caption to include user
  let newFavs = [];
  for (const figure of figuresAll) {
    const figcaption = figure.querySelector("figcaption");
    const byElem = figcaption.childNodes[1].cloneNode(true);
    const linkElem = byElem.querySelector("a[href]");
    const iElem = byElem.querySelector("i");
    const aElem = byElem.querySelector("a");

    linkElem.style.fontWeight = "400";
    iElem.textContent = "from";
    aElem.title = user;
    aElem.textContent = user;
    aElem.href = `https://www.furaffinity.net/favorites/${user}`;

    figcaption.appendChild(byElem);
    newFavs.push(figure);
  }

  // Removing lastFavs from figures
  let newCurrScanFavs = newFavs.map((figure) => figure.outerHTML);
  progress.currScanFavs = progress.currScanFavs.concat(newCurrScanFavs);

  // Saving progress to localStorage
  progress.intSavedUsers.push(watcher);
  localStorage.setItem("wfloadingusers", JSON.stringify(progress.intSavedUsers));
  localStorage.setItem("wfloadingpercent", percent.toFixed(2));
  setCompLocalStorageArrayItemAsync("wfloading", progress.currScanFavs);

  return { newFavs: newFavs, intSavedUsers: progress.intSavedUsers, currScanFavs: progress.currScanFavs };
}

async function createLastXFavsButton() {
  let lastXFavsButton = document.createElement("a");
  lastXFavsButton.id = "lastXFavsButton";
  lastXFavsButton.className = "notification-container inline";
  lastXFavsButton.textContent = "Load last x Favs";
  lastXFavsButton.title = "Show last X Favorites";
  lastXFavsButton.style.cursor = "pointer";
  lastXFavsButton.addEventListener("click", () => {
    currentLength = 0;
    let amount = prompt("Enter the amount of Favs you want to load: ");
    while (amount && isNaN(parseInt(amount))) amount = prompt("Input was not a Number. Please enter the amount of Favs you want to load: ");
    if (amount && amount > 0) loadLastXFavsAll(lastXFavsButton, amount);
  });
  document.getElementsByClassName("message-bar-desktop")[0].appendChild(lastXFavsButton);
}

async function loadLastXFavsAll(lastXFavsButton, amount) {
  // Getting watchers
  const watchers = await getWatchers();
  totalLength = watchers.length;
  console.log(`You are watching "${totalLength}" people`);
  console.log(`Searching for last "${amount}" Favs...`);

  // Getting lastFavs
  let progress = { newFavs: [], percent: 0, intSavedUsers: [], currScanFavs: [] };
  let newFavsAll = [];
  let promises = [];
  let semaphore = new Semaphore(2);
  for (const watcher of watchers) {
    promises.push(
      semaphore.acquire().then(async () => {
        try {
          const watcherLink = watcher.querySelector("a").href;
          // Getting last favs from watcher
          progress = await getUnreadFavsWatcher(watcherLink, amount, progress, true);
          if (progress.newFavs) {
            newFavsAll = newFavsAll.concat(progress.newFavs);
          }

          // Updating LastXButton prefix
          lastXFavsButton.textContent = `WF Last ${amount}: ${percent.toFixed(2)}%`;
        } catch (error) {
          console.error(error);
        }
        finally {
          semaphore.release();
        }
      })
    );
  }
  await Promise.all(promises);

  // Loading last x favs
  const figureCount = newFavsAll.length;
  if (figureCount !== 0) {
    lastXFavsButton.setAttribute("loading", false);
    lastXFavsButton.textContent = figureCount + "WF";
    totalLength = 0;
    localStorage.setItem("clicked", true);
    newFavsAll = Array.from(newFavsAll);
    newFavsAll = newFavsAll.map((newFav) => newFav.outerHTML);
    var favsComp = await compressString(JSON.stringify(newFavsAll));
    localStorage.setItem("favs", favsComp);
    window.location.href = "https://www.furaffinity.net/msg/submissions/";
  } else lastXFavsButton.parentNode.removeChild(lastXFavsButton);

  totalLength = 0;

  return newFavsAll;
}

// Getting fav figures from a specific user
async function getUserFavFigures(user, maxFavsLength, ignoreLastSeen = false) {
  // Checking last seen fav
  const lastFavsTemp = JSON.parse(localStorage.getItem("lastFavs")) || {};
  const userInLastFavs = user in lastFavsTemp;

  let figuresAll = [];
  let lastFigureIndex = -1;
  for (let i = 1; lastFigureIndex == -1 && (i == 0 || figuresAll.length < maxFavsLength); i++) {
    // Getting figures html from page i
    const favLink = `https://www.furaffinity.net/favorites/${user}/${i}`;
    const favs = await getHTML(favLink);
    if (!favs || !favs.body) break;
    if (favs.getElementById("no-images")) {
      return "no-images";
    }
    const figures = Array.from(favs.body.getElementsByTagName("figure"));
    if (!figures || figures.length == 0) break;

    // Check last seen fav
    if (!ignoreLastSeen && userInLastFavs) {
      lastFigureIndex = figuresAll.findIndex((figure) => figure.id == lastFavsTemp[user]); //figures
    }
    figuresAll = figuresAll.concat(figures);
  }

  if (figuresAll.length > maxFavsLength) {
    figuresAll = figuresAll.slice(0, maxFavsLength);
  }

  if (!ignoreLastSeen && lastFigureIndex !== -1) {
    figuresAll = figuresAll.slice(0, lastFigureIndex);
    if (figuresAll.length !== 0) lastFavs[user] = figuresAll[0].id;
  } else if (firstStart) {
    if (figuresAll && figuresAll.length !== 0) {
      if (!lastFavs) lastFavs = {};
      lastFavs[user] = figuresAll[0].id;
    }
  }

  return figuresAll;
}

async function getHTML(url) {
  try {
    const response = await fetch(url);
    const html = await response.text();
    const parser = new DOMParser();
    const doc = parser.parseFromString(html, "text/html");
    return doc;
  } catch (error) {
    console.error(error);
  }
}

async function setCompLocalStorageArrayItemAsync(itemname, item) {
  let itemcomp = await compressString(JSON.stringify(item));
  localStorage.setItem(itemname, itemcomp);
}

async function compressString(str) {
  return LZString.compress(str);
}

async function decompressString(compStr) {
  return LZString.decompress(compStr);
}

class Semaphore {
  constructor(maxConcurrency) {
    this.maxConcurrency = maxConcurrency;
    this.currentConcurrency = 0;
    this.waitingQueue = [];
  }

  acquire() {
    return new Promise((resolve, reject) => {
      if (this.currentConcurrency < this.maxConcurrency) {
        this.currentConcurrency++;
        resolve();
      } else {
        this.waitingQueue.push(resolve);
      }
    });
  }

  release() {
    if (this.waitingQueue.length > 0) {
      let nextResolve = this.waitingQueue.shift();
      nextResolve();
    } else {
      this.currentConcurrency--;
    }
  }
}

// ------------------------------ //
// ---------- SETTINGS ---------- //
// ------------------------------ //

// Adding settings to the navigation menu
async function addExSettings() {
  const settings = document.querySelector('ul[class="navhideonmobile"]').querySelector('a[href="/controls/settings/"]').parentNode;

  if (document.getElementById("extension_settings")) {
    document.getElementById("midori_settings").addEventListener("click", function () {
      localStorage.setItem("wfsettings", true.toString());
    });
    return;
  }
  let exSettingsHeader = document.createElement("h3");
  exSettingsHeader.id = "extension_settings";
  exSettingsHeader.textContent = "Extension Settings";
  settings.appendChild(exSettingsHeader);

  let wfsettings = document.createElement("a");
  wfsettings.id = "midori_settings";
  wfsettings.textContent = "Midori's Script Settings";
  wfsettings.style.cursor = "pointer";
  wfsettings.onclick = function () {
    localStorage.setItem("wfsettings", true.toString());
    window.location = "https://www.furaffinity.net/controls/settings";
  };
  settings.appendChild(wfsettings);
}

// Adding settings to the settings sidebar menu
async function addExSettingsSidebar() {
  const settings = document.getElementById("controlpanelnav");

  if (document.getElementById("extension_settings_side")) {
    document.getElementById("midori_settings_side").addEventListener("click", function () {
      localStorage.setItem("wfsettings", true.toString());
    });
    return;
  }
  let exSettingsHeader = document.createElement("h3");
  exSettingsHeader.id = "extension_settings_side";
  exSettingsHeader.textContent = "Extension Settings";
  settings.appendChild(exSettingsHeader);

  let wfsettings = document.createElement("a");
  wfsettings.id = "midori_settings_side";
  wfsettings.textContent = "Midori's Script Settings";
  wfsettings.style.cursor = "pointer";
  wfsettings.onclick = function () {
    localStorage.setItem("wfsettings", true.toString());
    window.location = "https://www.furaffinity.net/controls/settings";
  };
  settings.appendChild(wfsettings);
}

// Creating the settings page
async function createSettings() {
  localStorage.setItem("wfsettings", false.toString());
  const columnPage = document.getElementById("columnpage");
  let content = columnPage.querySelector('div[class="content"]');
  for (const section of content.querySelectorAll('section:not([class="exsettings"])')) section.parentNode.removeChild(section);

  let section = document.createElement("section");
  section.className = "exsettings";
  let headerContainer = document.createElement("div");
  headerContainer.className = "section-header";
  let header = document.createElement("h2");
  header.textContent = "Watches Favorite Viewer Settings";
  headerContainer.appendChild(header);
  section.appendChild(headerContainer);
  let bodyContainer = document.createElement("div");
  bodyContainer.className = "section-body";

  // Last X Favs Setting
  let Item1 = document.createElement("div");
  Item1.className = "control-panel-item-container";
  let Item1Name = document.createElement("div");
  Item1Name.className = "control-panel-item-name";
  let Item1NameText = document.createElement("h4");
  Item1NameText.textContent = "Last X Favs";
  Item1Name.appendChild(Item1NameText);
  Item1.appendChild(Item1Name);
  let Item1Desc = document.createElement("div");
  Item1Desc.className = "control-panel-item-description";
  let Item1DescText = document.createTextNode("Sets wether the Load last x Favs buttons appears after a new Fav scan found no new Favs.");
  Item1Desc.appendChild(Item1DescText);
  Item1.appendChild(Item1Desc);
  let Item1Option = document.createElement("div");
  Item1Option.className = "control-panel-item-options";
  let Item1OptionContainer = document.createElement("div");
  let Item1OptionElem1 = document.createElement("input");
  Item1OptionElem1.id = "wfsettings_01";
  Item1OptionElem1.type = "checkbox";
  Item1OptionElem1.style.cursor = "pointer";
  Item1OptionElem1.style.marginRight = "4px";
  Item1OptionElem1.addEventListener("change", function () {
    showLoadLastXFavsButton = Item1OptionElem1.checked;
    localStorage.setItem("wfsetting_01", showLoadLastXFavsButton.toString());
  });
  Item1OptionContainer.appendChild(Item1OptionElem1);
  let Item1OptionElem2 = document.createTextNode("Show Last X Favs Button");
  Item1OptionContainer.appendChild(Item1OptionElem2);
  Item1Option.appendChild(Item1OptionContainer);
  Item1.appendChild(Item1Option);
  bodyContainer.appendChild(Item1);

  // Max Favs Loaded Setting
  let Item2 = document.createElement("div");
  Item2.className = "control-panel-item-container";
  let Item2Name = document.createElement("div");
  Item2Name.className = "control-panel-item-name";
  let Item2NameText = document.createElement("h4");
  Item2NameText.textContent = "Max Favs Loaded";
  Item2Name.appendChild(Item2NameText);
  Item2.appendChild(Item2Name);
  let Item2Desc = document.createElement("div");
  Item2Desc.className = "control-panel-item-description";
  let Item2DescText = document.createTextNode("Sets the maximum number of Favs loaded");
  Item2Desc.appendChild(Item2DescText);
  Item2.appendChild(Item2Desc);
  let Item2Option = document.createElement("div");
  Item2Option.className = "control-panel-item-options";
  let Item2OptionContainer = document.createElement("div");
  let Item2OptionElem1 = document.createElement("input");
  Item2OptionElem1.id = "wfsettings_02";
  Item2OptionElem1.type = "text";
  Item2OptionElem1.className = "textbox";
  Item2OptionElem1.addEventListener("input", function () {
    this.value = this.value.replace(/[^0-9]/g, "");
    maxFavsLength = +this.value;
    localStorage.setItem("wfsetting_02", maxFavsLength.toString());
  });
  Item2OptionContainer.appendChild(Item2OptionElem1);
  Item2Option.appendChild(Item2OptionContainer);
  Item2.appendChild(Item2Option);
  bodyContainer.appendChild(Item2);

  // Reset Synchronisation Error Setting
  let Item3 = document.createElement("div");
  Item3.className = "control-panel-item-container";
  let Item3Name = document.createElement("div");
  Item3Name.className = "control-panel-item-name";
  let Item3NameText = document.createElement("h4");
  Item3NameText.textContent = "Reset Synchronisation";
  Item3Name.appendChild(Item3NameText);
  Item3.appendChild(Item3Name);
  let Item3Desc = document.createElement("div");
  Item3Desc.className = "control-panel-item-description";
  let Item3DescText = document.createTextNode("Resets the synchronisation variable to fix an error that no scan will start");
  Item3Desc.appendChild(Item3DescText);
  Item3.appendChild(Item3Desc);
  let Item3Option = document.createElement("div");
  Item3Option.className = "control-panel-item-options";
  let Item3OptionContainer = document.createElement("div");
  let Item3OptionElem1 = document.createElement("button");
  Item3OptionElem1.id = "wfsettings_03";
  Item3OptionElem1.type = "button";
  Item3OptionElem1.className = "button standard mobile-fix";
  Item3OptionElem1.textContent = "Reset Loadingstate";
  Item3OptionElem1.onclick = function () {
    localStorage.removeItem("wfloadingstate");
    if (localStorage.getItem("wfloadingstate") == null) {
      Item3OptionElem1.textContent = "<---- Success ---->";
      setTimeout(() => {
        Item3OptionElem1.textContent = "Reset Loadingstate";
      }, 3000);
    } else {
      Item3OptionElem1.textContent = "<---- Failed ---->";
      setTimeout(() => {
        Item3OptionElem1.textContent = "Reset Loadingstate";
      }, 3000);
    }
  };
  Item3OptionContainer.appendChild(Item3OptionElem1);
  Item3Option.appendChild(Item3OptionContainer);
  Item3.appendChild(Item3Option);
  bodyContainer.appendChild(Item3);

  // Reset Saving Variable Setting
  let Item4 = document.createElement("div");
  Item4.className = "control-panel-item-container";
  let Item4Name = document.createElement("div");
  Item4Name.className = "control-panel-item-name";
  let Item4NameText = document.createElement("h4");
  Item4NameText.textContent = "Reset Last seen Favs";
  Item4Name.appendChild(Item4NameText);
  Item4.appendChild(Item4Name);
  let Item4Desc = document.createElement("div");
  Item4Desc.className = "control-panel-item-description";
  let Item4DescText = document.createTextNode("Resets the last seen favs variable to reinitialize the Fav-Scanner");
  Item4Desc.appendChild(Item4DescText);
  Item4.appendChild(Item4Desc);
  let Item4Option = document.createElement("div");
  Item4Option.className = "control-panel-item-options";
  let Item4OptionContainer = document.createElement("div");
  let Item4OptionElem1 = document.createElement("button");
  Item4OptionElem1.id = "wfsettings_04";
  Item4OptionElem1.type = "button";
  Item4OptionElem1.className = "button standard mobile-fix";
  Item4OptionElem1.textContent = "Reset Last seen Favs";
  Item4OptionElem1.onclick = function () {
    localStorage.removeItem("lastFavs");
    if (localStorage.getItem("lastFavs") == null) {
      Item4OptionElem1.textContent = "<---- Success ---->";
      setTimeout(() => {
        Item4OptionElem1.textContent = "Reset Last seen Favs";
      }, 3000);
    } else {
      Item4OptionElem1.textContent = "<---- Failed ---->";
      setTimeout(() => {
        Item4OptionElem1.textContent = "Reset Last seen Favs";
      }, 3000);
    }
  };
  Item4OptionContainer.appendChild(Item4OptionElem1);
  Item4Option.appendChild(Item4OptionContainer);
  Item4.appendChild(Item4Option);
  bodyContainer.appendChild(Item4);

  section.appendChild(bodyContainer);
  content.appendChild(section);

  fillSettings();
}

// Fill Settings with saved values
async function fillSettings() {
  let setting1 = document.getElementById("wfsettings_01");
  setting1.checked = showLoadLastXFavsButton;

  let setting2 = document.getElementById("wfsettings_02");
  setting2.value = maxFavsLength.toString();
}