KaguraGames to F95Zone and Steam Search Buttons

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

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==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);
    }
})();