Move Tag Posts Count

Moves the tag's posts count after the tag name on a webpage with specific elements.

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==UserScript==
// @name         Move Tag Posts Count
// @version      1.6
// @description  Moves the tag's posts count after the tag name on a webpage with specific elements.
// @match      https://chan.sankakucomplex.com/post*
// @match      https://chan.sankakucomplex.com/*/post*
// @match      https://chan.sankakucomplex.com/*/post/*
// @match      https://chan.sankakucomplex.com/?*tags*
// @grant        none
// @license      MIT
// @namespace https://greasyfork.org/users/1104432

// ==/UserScript==

(function() {
    'use strict';

    document.querySelectorAll('div[id^="tag_container"]').forEach(div => {
        const span = document.createElement('span')

        span.style.color = 'grey'
        span.innerHTML = ' ' + transformNumber(div.querySelector('.tooltip').innerHTML.match(/Posts: <span data-count="(\d*)">/i)[1])
        div.insertBefore(span, div.querySelector('a').nextSibling)
    });

    function transformNumber(numberString) {

        const numberParts = numberString.trim().split(/(\d+\.?\d*)([KMB])?/);
        let number = parseFloat(numberParts[1]);
        const suffix = numberParts[2];

        if (suffix === 'K') {
            number *= 1000;
        } else if (suffix === 'M') {
            number *= 1000000;
        }

        return number.toLocaleString("ro-RO", {
            useGrouping: true
        });
    }
})();