Adds buttons to search for the current game and developer on F95Zone and its forums. Also autofills and submits the search form on the F95Zone forums search page by clicking the search button.
当前为
// ==UserScript==
// @name F95Zone Search Buttons for Steam
// @namespace http://tampermonkey.net/
// @version 1.8
// @description Adds buttons to search for the current game and developer on F95Zone and its forums. Also autofills and submits the search form on the F95Zone forums search page by clicking the search button.
// @author FunkyJustin
// @match https://store.steampowered.com/app/*
// @grant none
// @license MIT
// ==/UserScript==
(function() {
'use strict';
function createF95ZoneButton() {
const gameTitle = document.querySelector('.apphub_AppName').innerText.trim();
const f95zoneGameLink = `https://f95zone.to/sam/latest_alpha/#/cat=games/page=1/search=${encodeURIComponent(gameTitle)}`;
const f95zoneForumLink = `https://f95zone.to/search/?q=${encodeURIComponent(gameTitle)}&t=post&c[child_nodes]=1&c[nodes][0]=2&c[title_only]=1&o=relevance`;
const gameButton = createButton('Search on F95Zone', f95zoneGameLink);
const forumButton = createButton('Search on F95Zone Forums', f95zoneForumLink);
const container = document.querySelector('.apphub_OtherSiteInfo');
container.appendChild(gameButton);
container.appendChild(forumButton);
// Click the search button on F95Zone forums page after loading
if (window.location.href === f95zoneForumLink) {
window.onload = function() {
setTimeout(function() {
const searchField = document.querySelector('.input[name="keywords"]');
if (searchField) {
searchField.value = gameTitle;
searchField.dispatchEvent(new KeyboardEvent('keydown', { key: 'Enter' }));
}
}, 1000); // 1 second delay before pressing Enter
};
}
// Adding the Developer search button
const developerElement = document.querySelector('#developers_list a');
if (developerElement) {
const developerName = developerElement.innerText.trim();
const f95zoneDeveloperLink = `https://f95zone.to/sam/latest_alpha/#/cat=games/page=1/creator=${encodeURIComponent(developerName)}`;
const developerButton = createButton('Search Developer on F95Zone', f95zoneDeveloperLink);
// Create a container for the developer button
const developerButtonContainer = document.createElement('div');
developerButtonContainer.style.marginTop = '10px'; // Add some margin at the top
developerButtonContainer.appendChild(developerButton);
developerElement.parentElement.appendChild(developerButtonContainer);
}
}
function createButton(text, link) {
const button = document.createElement('a');
button.innerText = text;
button.href = link;
button.target = '_blank';
button.style.display = 'inline-block'; // Change display to inline-block
button.style.marginRight = '10px'; // Add margin between buttons
button.style.color = '#fff';
button.style.backgroundColor = '#009688';
button.style.padding = '10px';
button.style.borderRadius = '5px';
button.style.textDecoration = 'none';
button.style.cursor = 'pointer';
return button;
}
// Wait for the game details to load before creating the button
window.addEventListener('load', createF95ZoneButton);
})();