Move Tag Posts Count

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

2023-06-18 या दिनांकाला. सर्वात नवीन आवृत्ती पाहा.

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey, Greasemonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्क्रिप्ट व्यवस्थापक एक्स्टेंशन इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्क्रिप्ट व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्टाईल व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

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

(function() {
    'use strict';

// Function to move the tag's posts count after the tag name for each element
function moveTagPostsCountForAll() {
    var tagContainers = document.querySelectorAll('div[id^="tag_container"]'); // Find all tag container elements

    // Iterate through each tag container element
    tagContainers.forEach(function(tagContainer) {
        var tagLink = tagContainer.querySelector('a[id^="tag"]'); // Find the tag link element inside the container
        var postsCount = getCount(tagContainer.querySelector('span[role="tooltip"] span:nth-of-type(1)').innerHTML); // Find the posts count element inside the tooltip

        // Check if both the tag link and posts count elements exist
        if (tagLink && postsCount) {
            // Move the posts count element after the tag link
            tagLink.parentNode.insertBefore(postsCount, tagLink.nextSibling);
        }
    });
}

function getCount(details) {
  var re = new RegExp("Posts: (.+?)(<br>)", "g");
  var transformedNumber = transformNumber(re.exec(details)[1]);

  // Create a span element to wrap the transformed number and apply the gray color
  var span = document.createElement('span');
  span.style.color = 'gray';
  span.appendChild(document.createTextNode(' ' + transformedNumber));

  return span;
}

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
    });
}

// Call the function to move the tag's posts count after the tag name for all elements
moveTagPostsCountForAll();


})();