DatPizdiAvtoruLZT

Добавляет кнопку Дать пизды в статьях - при нажатии перекидывает на репорт

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         DatPizdiAvtoruLZT
// @namespace    http://tampermonkey.net/
// @version      2.2
// @description  Добавляет кнопку Дать пизды в статьях - при нажатии перекидывает на репорт
// @author       Timka251 & eretly
// @match        https://lolz.live/threads/*
// @match        https://lolz.guru/threads/*
// @match        https://zelenka.guru/threads/*
// @icon         https://nztcdn.com/files/f1a0f660-0e67-41aa-bc44-ad644bf1df88.webp
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    const hostname = window.location.hostname;

    const postElement = document.querySelector('li[id^="post-"]');
    if (!postElement) return;

    const threadId = postElement.id.split('-')[1];

    const thankAuthorBox = document.querySelector('.thankAuthorBox');
    if (!thankAuthorBox) return;

    const verticalSeparatorContainer = document.createElement('div');
    verticalSeparatorContainer.style.display = 'flex';
    verticalSeparatorContainer.style.flexDirection = 'row';
    verticalSeparatorContainer.style.alignItems = 'flex-start';
    verticalSeparatorContainer.style.justifyContent = 'space-between';

    const leftContentContainer = document.createElement('div');
    leftContentContainer.style.flex = '1';
    while (thankAuthorBox.firstChild) {
        leftContentContainer.appendChild(thankAuthorBox.firstChild);
    }

    const rightContentContainer = document.createElement('div');
    rightContentContainer.style.flex = '1';
    rightContentContainer.style.marginLeft = '20px';
    rightContentContainer.style.position = 'relative';
    rightContentContainer.style.padding = '15px 20px';

    const newTextElement = document.createElement('div');
    newTextElement.className = 'thankAuthorTitle';
    newTextElement.style.fontSize = '16px';
    newTextElement.style.fontWeight = '600';
    newTextElement.style.color = '#FFF';
    newTextElement.textContent = 'Эта статья оказалась хуйнёй?';
    newTextElement.style.position = 'absolute';
    newTextElement.style.top = '0px';
    newTextElement.style.left = '20px';

    const newButtonElement = document.createElement('a');
    newButtonElement.href = `https://${hostname}/posts/${threadId}/report`; // Динамический URL
    newButtonElement.style.display = 'inline-flex';
    newButtonElement.style.alignItems = 'center';
    newButtonElement.style.padding = '7.6px';
    newButtonElement.style.backgroundColor = '#333';
    newButtonElement.style.borderRadius = '5px';
    newButtonElement.style.textDecoration = 'none';
    newButtonElement.style.fontSize = '18px';
    newButtonElement.style.marginTop = '10px';
    newButtonElement.style.position = 'absolute';
    newButtonElement.style.top = '22px';
    newButtonElement.style.left = '20px';

    const buttonIcon = document.createElement('img');
    buttonIcon.src = 'https://nztcdn.com/files/f1a0f660-0e67-41aa-bc44-ad644bf1df88.webp';
    buttonIcon.style.width = '20px';
    buttonIcon.style.height = '20px';
    buttonIcon.style.marginRight = '10px';

    const buttonText = document.createElement('span');
    buttonText.textContent = 'Дать пизды автору';
    buttonText.style.fontSize = '13px';
    buttonText.style.color = '#E7F5F5';
    buttonText.style.textDecoration = 'none';

    newButtonElement.appendChild(buttonIcon);
    newButtonElement.appendChild(buttonText);

    rightContentContainer.appendChild(newTextElement);
    rightContentContainer.appendChild(newButtonElement);

    verticalSeparatorContainer.appendChild(leftContentContainer);
    verticalSeparatorContainer.appendChild(rightContentContainer);

    // Добавление вертикального разделителя в thankAuthorBox
    thankAuthorBox.appendChild(verticalSeparatorContainer);
})();