KaguraGames to F95Zone and Steam Search Buttons

Add buttons to search game title from KaguraGames on F95Zone and Steam

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name         KaguraGames to F95Zone and Steam Search Buttons
// @namespace    http://tampermonkey.net/
// @version      1.3
// @description  Add buttons to search game title from KaguraGames on F95Zone and Steam
// @author       FunkyJustin
// @license      MIT
// @match        https://www.kaguragames.com/product/*
// @icon         https://www.google.com/s2/favicons?domain=kaguragames.com
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Function to extract the game title
    function getGameTitle() {
        let titleElement = document.querySelector('h1.product-title.product_title.entry-title');
        return titleElement ? titleElement.textContent.trim() : null;
    }

    // Function to create and display the search buttons
    function createSearchButtons(title) {
        // F95Zone search button
        let f95zoneButton = document.createElement('button');
        f95zoneButton.textContent = `Search "${title}" on F95Zone`;
        f95zoneButton.style.display = 'block';
        f95zoneButton.style.marginTop = '10px';
        f95zoneButton.style.fontSize = '16px';
        f95zoneButton.style.padding = '10px';
        f95zoneButton.style.backgroundColor = '#007bff';
        f95zoneButton.style.color = '#fff';
        f95zoneButton.style.border = 'none';
        f95zoneButton.style.cursor = 'pointer';
        f95zoneButton.style.borderRadius = '5px';
        f95zoneButton.style.marginBottom = '10px';

        f95zoneButton.addEventListener('click', function() {
            let searchUrl = `https://f95zone.to/sam/latest_alpha/#/cat=games/page=1/search=${encodeURIComponent(title)}`;
            window.open(searchUrl, '_blank');
        });

        // Steam search button
        let steamButton = document.createElement('button');
        steamButton.textContent = `Search "${title}" on Steam`;
        steamButton.style.display = 'block';
        steamButton.style.marginTop = '10px';
        steamButton.style.fontSize = '16px';
        steamButton.style.padding = '10px';
        steamButton.style.backgroundColor = '#1b2838';
        steamButton.style.color = '#fff';
        steamButton.style.border = 'none';
        steamButton.style.cursor = 'pointer';
        steamButton.style.borderRadius = '5px';

        steamButton.addEventListener('click', function() {
            let searchUrl = `https://store.steampowered.com/search/?term=${encodeURIComponent(title)}`;
            window.open(searchUrl, '_blank');
        });

        // Append the buttons to a suitable place on the page
        let container = document.querySelector('.summary.entry-summary');
        if (container) {
            container.appendChild(f95zoneButton);
            container.appendChild(steamButton);
        }
    }

    // Main script logic
    let gameTitle = getGameTitle();
    if (gameTitle) {
        createSearchButtons(gameTitle);
    }
})();