Toggle HTML View of Additional Info (Greasyfork)

Adds a button to toggle the HTML view of the additional info div on Greasy Fork pages so yo can see the HTML that made that awesome looking Addition Info 😁

Você precisará instalar uma extensão como Tampermonkey, Greasemonkey ou Violentmonkey para instalar este script.

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

Você precisará instalar uma extensão como Tampermonkey ou Violentmonkey para instalar este script.

Você precisará instalar uma extensão como Tampermonkey ou Userscripts para instalar este script.

Você precisará instalar uma extensão como o Tampermonkey para instalar este script.

Você precisará instalar um gerenciador de scripts de usuário para instalar este script.

(Eu já tenho um gerenciador de scripts de usuário, me deixe instalá-lo!)

Você precisará instalar uma extensão como o Stylus para instalar este estilo.

Você precisará instalar uma extensão como o Stylus para instalar este estilo.

Você precisará instalar uma extensão como o Stylus para instalar este estilo.

Você precisará instalar um gerenciador de estilos de usuário para instalar este estilo.

Você precisará instalar um gerenciador de estilos de usuário para instalar este estilo.

Você precisará instalar um gerenciador de estilos de usuário para instalar este estilo.

(Eu já possuo um gerenciador de estilos de usuário, me deixar fazer a instalação!)

// ==UserScript==
// @name         Toggle HTML View of Additional Info (Greasyfork)
// @namespace    http://tampermonkey.net/
// @version      1.01
// @description  Adds a button to toggle the HTML view of the additional info div on Greasy Fork pages so yo can see the HTML that made that awesome looking Addition Info 😁
// @author       longkidkoolstar
// @license      MIT
// @icon         https://th.bing.com/th/id/R.324dedb79ac284c5289c6bcac9bd9177?rik=fGtU%2fR4d%2fTvQIw&pid=ImgRaw&r=0
// @match        https://greasyfork.org/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Create the button element
    const button = document.createElement('button');
    button.textContent = 'Toggle HTML View';

    // Style the button to match the Greasy Fork style
    button.style.backgroundColor = 'rgb(0, 82, 0)';
    button.style.border = 'none';
    button.style.color = '#fff';
    button.style.padding = '8px 16px';
    button.style.textAlign = 'center';
    button.style.textDecoration = 'none';
    button.style.display = 'inline-block';
    button.style.fontSize = '16px';
    button.style.marginBottom = '16px';
    button.style.cursor = 'pointer';
    button.style.fontFamily = 'inherit';

    // Get the additional info div
    const additionalInfoDiv = document.querySelector('#additional-info.user-content');

    // Add the click event listener to the button
    button.addEventListener('click', () => {
        // Toggle the HTML view
        if (additionalInfoDiv.dataset.htmlView === 'true') {
            // Revert to the original content
            additionalInfoDiv.dataset.htmlView = 'false';
            additionalInfoDiv.innerHTML = additionalInfoDiv.dataset.originalContent;
        } else {
            // Save the original content and replace with the HTML view
            additionalInfoDiv.dataset.htmlView = 'true';
            additionalInfoDiv.dataset.originalContent = additionalInfoDiv.innerHTML;
            additionalInfoDiv.textContent = additionalInfoDiv.innerHTML;
        }
    });

    // Add the button to the page
    additionalInfoDiv.parentNode.insertBefore(button, additionalInfoDiv);

})();