Go to 8chan.*/mascot/ to store or find new mascots.
// ==UserScript== // @name Fullchan X // @namespace Violentmonkey Scripts // @match *://8chan.moe/* // @match *://8chan.se/* // @match *://8chan.cc/* // @match *://8chan.cc/* // @grant GM.getValue // @grant GM.setValue // @grant GM.deleteValue // @grant GM.listValues // @run-at document-end // @version 1.20.8 // @author vfyxe // @description 8chan features script // @downloadURL https://update.greasyfork.cloud/scripts/533067/Fullchan%20X.user.js // @updateURL https://update.greasyfork.cloud/scripts/533067/Fullchan%20X.meta.js // ==/UserScript== class fullChanX extends HTMLElement { constructor() { super(); } async init() { this.settingsEl = document.querySelector('fullchan-x-settings'); this.settingsAll = this.settingsEl?.settings; if (!this.settingsAll) { const savedSettings = await GM.getValue('fullchan-x-settings'); if (savedSettings) { try { this.settingsAll = JSON.parse(savedSettings); } catch (error) { console.error('Failed to parse settings from GM storage', error); this.settingsAll = {}; } } else { this.settingsAll = {}; } } this.settings = this.settingsAll.main || {}; this.settingsThreadBanisher = this.settingsAll.threadBanisher || {}; this.settingsMascot = this.settingsAll.mascot || {}; this.isThread = !!document.querySelector('.opCell'); this.isDisclaimer = window.location.href.includes('disclaimer'); Object.keys(this.settings).forEach(key => { if (typeof this.settings[key] === 'object' && this.settings[key] !== null) { this[key] = this.settings[key]?.value; } else { this[key] = this.settings[key]; } }); this.settingsButton = this.querySelector('#fcx-settings-btn'); this.settingsButton.addEventListener('click', () => this.settingsEl.toggle()); this.handleBoardLinks(); this.styleUI(); if (!this.isThread) { if (this.settingsThreadBanisher.enableThreadBanisher) this.banishThreads(this.settingsThreadBanisher); return; } this.quickReply = document.querySelector('#quick-reply'); this.qrbody = document.querySelector('#qrbody'); this.threadParent = document.querySelector('#divThreads'); this.threadId = this.threadParent.querySelector('.opCell').id; this.thread = this.threadParent.querySelector('.divPosts'); this.posts = [...this.thread.querySelectorAll('.postCell')]; this.postOrder = 'default'; this.postOrderSelect = this.querySelector('#thread-sort'); this.myYousLabel = this.querySelector('.my-yous__label'); this.yousContainer = this.querySelector('#my-yous'); this.gallery = document.querySelector('fullchan-x-gallery'); this.galleryButton = this.querySelector('#fcx-gallery-btn'); this.updateYous(); this.observers(); if (this.enableFileExtensions) this.handleTruncatedFilenames(); if (this.settingsMascot.enableMascot) this.showMascot(); if (this.settings.doNotShowLocation) { const checkbox = document.getElementById('qrcheckboxNoFlag'); if (checkbox) checkbox.checked = true; checkbox.dispatchEvent(new Event('change', { bubbles: true })); } } styleUI () { this.style.setProperty('--top', this.uiTopPosition); this.style.setProperty('--right', this.uiRightPosition); this.classList.toggle('fcx-in-nav', this.moveToNav) this.classList.toggle('fcx--dim', this.uiDimWhenInactive && !this.moveToNave); this.classList.toggle('fcx-page-thread', this.isThread); document.body.classList.toggle('fcx-replies-plus', this.enableEnhancedReplies); document.body.classList.toggle('fcx-hide-delete', this.hideDeletionBox); document.body.classList.toggle('fcx-hide-navbar', this.settings.hideNavbar); document.body.classList.toggle('fcx-icon-replies', this.settings.enableIconBacklinks); const style = document.createElement('style'); if (this.hideDefaultBoards !== '' && this.hideDefaultBoards.toLowerCase() !== 'all') { style.textContent += '#navTopBoardsSpan{display:block!important;}' } document.body.appendChild(style); } checkRegexList(string, regexList) { const regexObjects = regexList.map(r => { const match = r.match(/^\/(.*)\/([gimsuy]*)$/); return match ? new RegExp(match[1], match[2]) : null; }).filter(Boolean); return regexObjects.some(regex => regex.test(string)); } banishThreads(banisher) { this.threadsContainer = document.querySelector('#divThreads'); if (!this.threadsContainer) return; this.threadsContainer.classList.add('fcx-threads'); const currentBoard = document.querySelector('#labelBoard')?.textContent.replace(/\//g,''); const boards = banisher.boards.value?.split(',') || ['']; if (!boards.includes(currentBoard)) return; const minCharacters = banisher.minimumCharacters.value || 0; const banishTerms = banisher.banishTerms.value?.split('\n') || []; const banishAnchored = banisher.banishAnchored.value; const wlCyclical = banisher.whitelistCyclical.value; const wlReplyCount = parseInt(banisher.whitelistReplyCount.value); const banishSorter = (thread) => { if (thread.querySelector('.pinIndicator') || thread.classList.contains('fcx-sorted')) return; let shouldBanish = false; const isAnchored = thread.querySelector('.bumpLockIndicator'); const isCyclical = thread.querySelector('.cyclicIndicator'); const replyCount = parseInt(thread.querySelector('.labelReplies')?.textContent?.trim()) || 0; const threadSubject = thread.querySelector('.labelSubject')?.textContent?.trim() || ''; const threadMessage = thread.querySelector('.divMessage')?.textContent?.trim() || ''; const threadContent = threadSubject + ' ' + threadMessage; const hasMinChars = threadMessage.length > minCharacters; const hasWlReplyCount = replyCount > wlReplyCount; if (!hasMinChars) shouldBanish = true; if (isAnchored && banishAnchored) shouldBanish = true; if (isCyclical && wlCyclical) shouldBanish = false; if (hasWlReplyCount) shouldBanish = false; // run heavy regex process only if needed if (!shouldBanish && this.checkRegexList(threadContent, banishTerms)) shouldBanish = true; if (shouldBanish) thread.classList.add('shit-thread'); thread.classList.add('fcx-sorted'); }; const banishThreads = () => { this.threads = this.threadsContainer.querySelectorAll('.catalogCell'); this.threads.forEach(thread => banishSorter(thread)); }; banishThreads(); const observer = new MutationObserver((mutationsList) => { for (const mutation of mutationsList) { if (mutation.type === 'childList' && mutation.addedNodes.length > 0) { banishThreads(); break; } } }); observer.observe(this.threadsContainer, { childList: true }); } handleBoardLinks () { const navBoards = document.querySelector('#navTopBoardsSpan'); const customBoardLinks = this.customBoardLinks?.toLowerCase().replace(/\s/g,'').split(','); console.log(customBoardLinks) let hideDefaultBoards = this.hideDefaultBoards?.toLowerCase().replace(/\s/g,'') || ''; const urlCatalog = this.catalogBoardLinks ? '/catalog.html' : ''; if (hideDefaultBoards === 'all') { document.body.classList.add('fcx-hide-navboard'); } else { const waitForNavBoards = setInterval(() => { const navBoards = document.querySelector('#navTopBoardsSpan'); if (!navBoards || !navBoards.querySelector('a')) return; clearInterval(waitForNavBoards); hideDefaultBoards = hideDefaultBoards.split(','); const defaultLinks = [...navBoards.querySelectorAll('a')]; defaultLinks.forEach(link => { link.href += urlCatalog; const linkText = link.textContent; const shouldHide = hideDefaultBoards.includes(linkText) || customBoardLinks.includes(linkText); link.classList.toggle('fcx-hidden', shouldHide); }); }, 50); if (this.customBoardLinks?.length > 0) { const customNav = document.createElement('span'); customNav.classList = 'nav-boards nav-boards--custom'; customNav.innerHTML = '['; customBoardLinks.forEach((board, index) => { const link = document.createElement('a'); link.href = '/' + board + urlCatalog; link.textContent = board; customNav.appendChild(link); if (index < customBoardLinks.length - 1) customNav.innerHTML += '/'; }); customNav.innerHTML += ']'; navBoards?.parentNode.insertBefore(customNav, navBoards); } } } observers () { this.postOrderSelect.addEventListener('change', (event) => { this.postOrder = event.target.value; this.assignPostOrder(); }); // Thread click this.threadParent.addEventListener('click', event => this.handleClick(event)); // Your (You)s const observerCallback = (mutationsList, observer) => { for (const mutation of mutationsList) { if (mutation.type === 'childList') { this.posts = [...this.thread.querySelectorAll('.postCell')]; if (this.postOrder !== 'default') this.assignPostOrder(); this.updateYous(); this.gallery.updateGalleryImages(); if (this.settings.enableFileExtensions) this.handleTruncatedFilenames(); } } }; const threadObserver = new MutationObserver(observerCallback); threadObserver.observe(this.thread, { childList: true, subtree: false }); // Gallery this.galleryButton.addEventListener('click', () => this.gallery.open()); this.myYousLabel.addEventListener('click', (event) => { if (this.myYousLabel.classList.contains('unseen')) { this.yousContainer.querySelector('.unseen').click(); } }); if (!this.enableEnhancedReplies) return; const setReplyLocation = (replyPreview) => { const parent = replyPreview.parentElement; if (!parent || (!parent.classList.contains('innerPost') && !parent.classList.contains('innerOP'))) return; if (parent.querySelector('.postInfo .panelBacklinks').style.display === 'none') return; const parentMessage = parent.querySelector('.divMessage'); if (parentMessage && parentMessage.parentElement === parent) { parentMessage.insertAdjacentElement('beforebegin', replyPreview); } }; const observer = new MutationObserver(mutations => { for (const mutation of mutations) { for (const node of mutation.addedNodes) { if (node.nodeType !== 1) continue; if (node.classList.contains('inlineQuote')) { const replyPreview = node.closest('.replyPreview'); if (replyPreview) { setReplyLocation(replyPreview); } } } } }); if (this.threadParent) observer.observe(this.threadParent, {childList: true, subtree: true }); } handleClick (event) { const clicked = event.target; let replyLink = clicked.closest('.panelBacklinks a'); const parentPost = clicked.closest('.innerPost, .innerOP'); const closeButton = clicked.closest('.postInfo > a:first-child'); const anonId = clicked.closest('.labelId'); const addMascotButton = clicked.closest('.sizeLabel'); if (closeButton) this.handleReplyCloseClick(closeButton, parentPost); if (replyLink) this.handleReplyClick(replyLink, parentPost); if (anonId) this.handleAnonIdClick(anonId, event); if (addMascotButton) this.handleAddMascotClick(addMascotButton, event); } handleAddMascotClick(button, event) { event.preventDefault(); try { const parentEl = button.closest('.uploadDetails'); if (!parentEl) return; const linkEl = parentEl.querySelector('.originalNameLink'); const imageUrl = linkEl.href; const imageName = linkEl.textContent; this.settingsEl.addMascotFromPost(imageUrl, imageName, button); } catch (error) { console.log(error); } } handleReplyCloseClick(closeButton, parentPost) { const replyLink = document.querySelector(`[data-close-id="${closeButton.id}"]`); if (!replyLink) return; const linkParent = replyLink.closest('.innerPost, .innerOP'); this.handleReplyClick(replyLink, linkParent); } handleReplyClick(replyLink, parentPost) { replyLink.classList.toggle('fcx-active'); let replyColor = replyLink.dataset.color; const replyId = replyLink.href.split('#').pop(); let replyPost = false; let labelId = false; const randomNum = () => `${Math.floor(Math.random() * 16777215).toString(16).padStart(6, '0')}` if (!replyColor) { replyPost = document.querySelector(`#${CSS.escape(replyId)}`); labelId = replyPost?.querySelector('.labelId'); replyColor = labelId?.textContent || randomNum(); } const linkQuote = [...parentPost.querySelectorAll('.replyPreview .linkQuote')] .find(link => link.textContent === replyId); if (!labelId && linkQuote) linkQuote.style = `--active-color: #${replyColor};`; const closeId = randomNum(); const closeButton = linkQuote?.closest('.innerPost').querySelector('.postInfo > a:first-child'); if (closeButton) closeButton.id = closeId; replyLink.style = `--active-color: #${replyColor};`; replyLink.dataset.color = `${replyColor}`; replyLink.dataset.closeId = closeId; } handleAnonIdClick (anonId, event) { this.anonIdPosts?.remove(); if (anonId === this.anonId) { this.anonId = null; return; } this.anonId = anonId; const anonIdText = anonId.textContent.split(' ')[0]; this.anonIdPosts = document.createElement('div'); this.anonIdPosts.classList = 'fcx-id-posts fcx-prevent-nesting'; const match = window.location.pathname.match(/^\/[^/]+\/res\/\d+\.html/); const prepend = match ? `${match[0]}#` : ''; const selector = `.postInfo:has(.labelId[style="background-color: #${anonIdText}"]) .linkQuote`; const postIds = [...this.threadParent.querySelectorAll(selector)].map(link => { const postId = link.getAttribute('href').split('#q').pop(); const newLink = document.createElement('a'); newLink.className = 'quoteLink'; newLink.href = prepend + postId; newLink.textContent = `>>${postId}`; return newLink; }); postIds.forEach(postId => this.anonIdPosts.appendChild(postId)); anonId.insertAdjacentElement('afterend', this.anonIdPosts); this.setPostListeners(this.anonIdPosts); } setPostListeners(parentPost) { const postLinks = [...parentPost.querySelectorAll('.quoteLink')]; const hoverPost = (event, link) => { const quoteId = link.href.split('#')[1]; let existingPost = document.querySelector(`.nestedPost[data-quote-id="${quoteId}"]`) || link.closest(`.postCell[id="${quoteId}"]`); if (existingPost) { this.markedPost = existingPost.querySelector('.innerPost') || existingPost.querySelector('.innerOP'); this.markedPost?.classList.add('markedPost'); return; } const quotePost = document.getElementById(quoteId); tooltips.removeIfExists(); const tooltip = document.createElement('div'); tooltip.className = 'quoteTooltip'; document.body.appendChild(tooltip); const rect = link.getBoundingClientRect(); if (!api.mobile) { if (rect.left > window.innerWidth / 2) { const right = window.innerWidth - rect.left - window.scrollX; tooltip.style.right = `${right}px`; } else { const left = rect.right + 10 + window.scrollX; tooltip.style.left = `${left}px`; } } tooltip.style.top = `${rect.top + window.scrollY}px`; tooltip.style.display = 'inline'; tooltips.loadTooltip(tooltip, link.href, quoteId); tooltips.currentTooltip = tooltip; } const unHoverPost = (event, link) => { if (!tooltips.currentTooltip) { this.markedPost?.classList.remove('markedPost'); return false; } if (tooltips.unmarkReply) { tooltips.currentTooltip.classList.remove('markedPost'); Array.from(tooltips.currentTooltip.getElementsByClassName('replyUnderline')) .forEach((a) => a.classList.remove('replyUnderline')) tooltips.unmarkReply = false; } else { tooltips.currentTooltip.remove(); } tooltips.currentTooltip = null; } const addHoverPost = (link => { link.addEventListener('mouseenter', (event) => hoverPost(event, link)); link.addEventListener('mouseleave', (event) => unHoverPost(event, link)); }); postLinks.forEach(link => addHoverPost(link)); } handleTruncatedFilenames () { this.postFileNames = [...this.threadParent.querySelectorAll('.originalNameLink[download]:not([data-file-ext])')]; this.postFileNames.forEach(fileName => { if (!fileName.textContent.includes('.')) return; const strings = fileName.textContent.split('.'); const typeStr = `.${strings.pop()}`; const typeEl = document.createElement('a'); typeEl.classList = ('file-ext originalNameLink'); typeEl.textContent = typeStr; fileName.dataset.fileExt = typeStr; fileName.textContent = strings.join('.'); fileName.parentNode.insertBefore(typeEl, fileName.nextSibling); }); } assignPostOrder () { const postOrderReplies = (post) => { const replyCount = post.querySelectorAll('.panelBacklinks a').length; post.style.order = 100 - replyCount; } const postOrderCatbox = (post) => { const postContent = post.querySelector('.divMessage').textContent; const matches = postContent.match(/catbox\.moe/g); const catboxCount = matches ? matches.length : 0; post.style.order = 100 - catboxCount; } if (this.postOrder === 'default') { this.thread.style.display = 'block'; return; } this.thread.style.display = 'flex'; if (this.postOrder === 'replies') { this.posts.forEach(post => postOrderReplies(post)); } else if (this.postOrder === 'catbox') { this.posts.forEach(post => postOrderCatbox(post)); } } updateYous () { this.yous = this.posts.filter(post => post.querySelector('.quoteLink.you')); this.yousLinks = this.yous.map(you => { const youLink = document.createElement('a'); youLink.textContent = '>>' + you.id; youLink.href = '#' + you.id; return youLink; }) let hasUnseenYous = false; this.setUnseenYous(); this.yousContainer.innerHTML = ''; this.yousLinks.forEach(you => { const youId = you.textContent.replace('>>', ''); if (!this.seenYous.includes(youId)) { you.classList.add('unseen'); hasUnseenYous = true } this.yousContainer.appendChild(you) }); this.myYousLabel.classList.toggle('unseen', hasUnseenYous); if (this.replyTabIcon === '') return; const icon = this.replyTabIcon; document.title = hasUnseenYous ? document.title.startsWith(`${icon} `) ? document.title : `${icon} ${document.title}` : document.title.replace(new RegExp(`^${icon} `), ''); } observeUnseenYou(you) { you.classList.add('fcx-observe-you'); const observer = new IntersectionObserver((entries, observer) => { entries.forEach(entry => { if (entry.isIntersecting) { const id = you.id; you.classList.remove('fcx-observe-you'); if (!this.seenYous.includes(id)) { this.seenYous.push(id); localStorage.setItem(this.seenKey, JSON.stringify(this.seenYous)); } observer.unobserve(you); this.updateYous(); } }); }, { rootMargin: '0px', threshold: 0.1 }); observer.observe(you); } setUnseenYous() { this.seenKey = `${this.threadId}-seen-yous`; this.seenYous = JSON.parse(localStorage.getItem(this.seenKey)); if (!this.seenYous) { this.seenYous = []; localStorage.setItem(this.seenKey, JSON.stringify(this.seenYous)); } this.unseenYous = this.yous.filter(you => !this.seenYous.includes(you.id)); this.unseenYous.forEach(you => { if (!you.classList.contains('fcx-observe-you')) { this.observeUnseenYou(you); } }); } showMascot(mascotData) { let mascot = null; if (mascotData) { mascot = mascotData; } else { const mascotList = this.settingsEl?.savedMascots .filter(mascot => mascot.enabled); if (!mascotList || mascotList.length === 0) return; mascot = mascotList[Math.floor(Math.random() * mascotList.length)]; } if (!mascot.image) return; if (!this.mascotEl) { this.mascotEl = document.createElement('img'); this.mascotEl.classList.add('fcx-mascot'); document.body.appendChild(this.mascotEl); } this.mascotEl.style = ""; this.mascotEl.src = mascot.image; this.mascotEl.style.opacity = this.settingsMascot.opacity * 0.01; if (mascot.top) this.mascotEl.style.top = mascot.top; if (mascot.left) this.mascotEl.style.left = mascot.left; if (mascot.right) this.mascotEl.style.right = mascot.right; if (mascot.bottom) this.mascotEl.style.bottom = mascot.bottom; if (mascot.width) this.mascotEl.style.width = mascot.width; if (mascot.height) this.mascotEl.style.height = mascot.height; if (mascot.flipImage) this.mascotEl.style.transform = 'scaleX(-1)'; } }; window.customElements.define('fullchan-x', fullChanX); class fullChanXSettings extends HTMLElement { constructor() { super(); this.settingsKey = 'fullchan-x-settings'; this.mascotKey = 'fullchan-x-mascots'; this.inputs = []; this.settings = {}; this.settingsTemplate = { main: { moveToNav: { info: 'Move Fullchan-X controls into the navbar.', type: 'checkbox', value: true }, enableEnhancedReplies: { info: "Enhances 8chan's native reply post previews.
Inline replies are now a native feature of 8chan, remember to enable them.
", type: 'checkbox', value: true }, enableIconBacklinks: { info: "Display reply backlinks as icons.", type: 'checkbox', value: false }, hideDeletionBox: { info: "Not much point in seeing this if you're not an mod.", type: 'checkbox', value: false }, doNotShowLocation: { info: "Board with location option will be set to false by default.", type: 'checkbox', value: false }, enableFileExtensions: { info: 'Always show filetype on shortened file names.', type: 'checkbox', value: true }, customBoardLinks: { info: 'List of custom boards in nav (seperate by comma)', type: 'input', value: 'v,a,b' }, hideDefaultBoards: { info: 'List of boards to remove from nav (seperate by comma). Set as "all" to remove all.', type: 'input', value: 'interracial,mlp' }, catalogBoardLinks: { info: 'Redirect nav board links to catalog pages.', type: 'checkbox', value: true }, uiTopPosition: { info: 'Position from top of screen e.g. 100px', type: 'input', value: '50px' }, uiRightPosition: { info: 'Position from right of screen e.g. 100px', type: 'input', value: '25px' }, uiDimWhenInactive: { info: 'Dim UI when not hovering with mouse.', type: 'checkbox', value: true }, hideNavbar: { info: 'Hide navbar until hover.', type: 'checkbox', value: false }, replyTabIcon: { info: 'Set the icon/text added to tab title when you get a new (You).', type: 'input', value: '❗' } }, mascot: { enableMascot: { info: 'Enable mascot image.', type: 'checkbox', value: false }, enableMascotAddButtons: { info: 'Add mascots-add button to post images.', type: 'checkbox', value: true }, opacity: { info: 'Opacity (1 to 100)', type: 'input', inputType: 'number', value: '75' } }, mascotImage: { id: { type: 'input', value: '', }, enabled: { info: 'Enable this mascot.', type: 'checkbox', value: true }, name: { info: 'Descriptive name', type: 'input', value: 'New Mascot' }, image: { info: 'Image URL (8chan image recommended).', type: 'input', value: '/.static/logo.png' }, flipImage: { info: 'Mirror the mascot image.', type: 'checkbox', value: false }, width: { info: 'Width of image.', type: 'input', value: '300px' }, height: { info: 'Height of image.', type: 'input', value: 'auto' }, bottom: { info: 'Bottom position.', type: 'input', value: '0px' }, right: { info: 'Right position.', type: 'input', value: '0px' }, top: { info: 'Top position.', type: 'input', value: '' }, left: { info: 'Left position.', type: 'input', value: '' } }, threadBanisher: { enableThreadBanisher: { info: 'Banish shit threads to the bottom of the calalog.', type: 'checkbox', value: true }, boards: { info: 'Banish theads on these boards (seperated by comma).', type: 'input', value: 'v,a' }, minimumCharacters: { info: 'Minimum character requirements', type: 'input', inputType: 'number', value: 100 }, banishTerms: { info: `Banish threads with these terms to the bottom of the catalog (new line per term).
How to use regex: Regex Cheatsheet.
NOTE: word breaks (\\b) MUST be entered as double escapes (\\\\b), they will appear as (\\b) when saved.
`, type: 'textarea', value: '/\\bcuck\\b/i\n/\\bchud\\b/i\n/\\bblacked\\b/i\n/\\bnormie\\b/i\n/\\bincel\\b/i\n/\\btranny\\b/i\n/\\bslop\\b/i\n' }, whitelistCyclical: { info: 'Whitelist cyclical threads.', type: 'checkbox', value: true }, banishAnchored: { info: 'Banish anchored threads that are under minimum reply count.', type: 'checkbox', value: true }, whitelistReplyCount: { info: 'Threads above this reply count (excluding those with banish terms) will be whitelisted.', type: 'input', inputType: 'number', value: 100 }, }, defaultMascot: { enabled: true, id: '', name: 'New Mascot', image: '/.static/logo.png', flipImage: false, width: '300px', height: 'auto', bottom: '0px', right: '0px', top: '', left: '', } }; } async init() { this.fcx = document.querySelector('fullchan-x'); this.settingsMainEl = this.querySelector('.fcxs-main'); this.settingsThreadBanisherEl = this.querySelector('.fcxs-thread-banisher'); this.settingsMascotEl = this.querySelector('.fcxs-mascot-settings'); this.mascotListEl = this.querySelector('.fcxs-mascot-list'); this.mascotSettingsTemplate = {...this.settingsTemplate.mascotImage}; this.currentMascotSettings = {...this.settingsTemplate.defaultMascot}; this.addMascotEl = this.querySelector('.fcxs-add-mascot-settings'); this.saveMascotButton = this.querySelector('.fcxs-save-mascot'); await this.getSavedSettings(); await this.getSavedMascots(); if (this.settings.main) { this.fcx.init(); this.loaded = true; }; this.buildSettingsOptions('main', 'settings', this.settingsMainEl); this.buildSettingsOptions('threadBanisher', 'settings', this.settingsThreadBanisherEl); this.buildSettingsOptions('mascot', 'settings', this.settingsMascotEl); this.buildSettingsOptions('mascotImage', 'mascotSettingsTemplate', this.addMascotEl); this.listeners(); this.querySelector('.fcx-settings__close').addEventListener('click', () => this.close()); document.body.classList.toggle('fcx-add-mascot-button', this.settings.mascot.enableMascotAddButtons); if (!this.loaded) this.fcx.init(); } getRandomId () { return `id${Math.random().toString(36).substring(2, 8)}`; } async setSavedSettings(settingsKey, status) { console.log("SAVING", this.settings); await GM.setValue(settingsKey, JSON.stringify(this.settings)); if (status === 'updated') this.classList.add('fcxs-updated'); } async getSavedSettings() { let saved = JSON.parse(await GM.getValue(this.settingsKey, 'null')); if (!saved) { const localSaved = JSON.parse(localStorage.getItem(this.settingsKey)); if (localSaved) { saved = localSaved; await GM.setValue(this.settingsKey, JSON.stringify(saved)); localStorage.removeItem(this.settingsKey); console.log('[Fullchan-X] Migrated settings from localStorage to GM storage.'); } } if (!saved) return; let migrated = false; for (const [sectionKey, sectionTemplate] of Object.entries(this.settingsTemplate)) { if (!saved[sectionKey]) { saved[sectionKey] = {}; } for (const [key, defaultConfig] of Object.entries(sectionTemplate)) { if (saved[sectionKey][key] && typeof saved[sectionKey][key] === 'object' && 'value' in saved[sectionKey][key]) { // Old format detected, migrating it saved[sectionKey][key] = saved[sectionKey][key].value; migrated = true; } } } this.settings = saved; if (migrated) { console.log('[Fullchan-X] Migrated old settings to new format.'); this.setSavedSettings(this.settingsKey, 'migrated'); } console.log('SAVED SETTINGS:', this.settings) } async updateSavedMascot(mascot, status = 'updated') { const index = this.savedMascots.findIndex(objectMascot => objectMascot.id === mascot.id); if (index !== -1) { this.savedMascots[index] = mascot; } else { this.savedMascots.push(mascot); } await GM.setValue(this.mascotKey, JSON.stringify(this.savedMascots)); this.classList.add(`fcxs-mascot-${status}`); } async getSavedMascots() { let savedMascots = JSON.parse(await GM.getValue(this.mascotKey, 'null')); if (!savedMascots) { const localSaved = JSON.parse(localStorage.getItem(this.mascotKey)); if (localSaved) { savedMascots = localSaved; await GM.setValue(this.mascotKey, JSON.stringify(savedMascots)); localStorage.removeItem(this.mascotKey); console.log('[Fullchan-X] Migrated mascots from localStorage to GM storage.'); } } if (!(savedMascots?.length > 0)) { savedMascots = [ { ...this.settingsTemplate.defaultMascot, name: 'Vivian', id: 'id0', image: '/.media/4283cdb87bc82b2617509306c6a50bd9d6d015f727f931fb4969b499508e2e7e.webp' } ]; } this.savedMascots = savedMascots; this.savedMascots.forEach(mascot => this.addMascotCard(mascot)); } addMascotCard(mascot, replaceId) { const card = document.createElement('div'); card.classList = `fcxs-mascot-card${mascot.enabled?'':' fcxs-mascot-card--disabled'}`; card.id = mascot.id; card.innerHTML = `Go to 8chan.*/mascot/ to store or find new mascots.