您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Let's you easily search the games on clean DL sites, watch gameplays without youtuber's comments and see if the game is woke-oriented.
当前为
// ==UserScript== // @name ::Steam Links:: // @namespace masterofobzene // @version 1.12 // @icon https://cdn.freebiesupply.com/images/large/2x/steam-logo-black-transparent.png // @description Let's you easily search the games on clean DL sites, watch gameplays without youtuber's comments and see if the game is woke-oriented. // @author masterofobzene // @match http://store.steampowered.com/app/* // @match https://store.steampowered.com/app/* // @grant none // @license MIT // ==/UserScript== const gameName = document.querySelector('.apphub_AppName').textContent.trim() const breadcrumbsContainer = document.querySelector('.breadcrumbs') breadcrumbsContainer.setAttribute('style', ` display: flex; justify-content: space-around; `) const metaLinksContainer = document.createElement('div') metaLinksContainer.setAttribute('style', ` display: flex; justify-content: space-around; width: 420px; `) const gogSearchLink = document.createElement('a') gogSearchLink.href = 'https://gog-games.to/?q=' + gameName gogSearchLink.textContent = 'gog-games.to' gogSearchLink.setAttribute('target', '_blank') const csrinSearchLink = document.createElement('a') csrinSearchLink.href = 'https://cs.rin.ru/forum/search.php?keywords='+ gameName + '&terms=any&author=&sc=1&sf=titleonly&sk=t&sd=d&sr=topics&st=0&ch=300&t=0&submit=Search' csrinSearchLink.textContent = 'cs.rin.ru' csrinSearchLink.setAttribute('target', '_blank') const torrminatorrSearchLink = document.createElement('a') torrminatorrSearchLink.href = 'https://forum.torrminatorr.com/search.php?keywords=' + gameName torrminatorrSearchLink.textContent = 'torrminatorr' torrminatorrSearchLink.setAttribute('target', '_blank') const fitgirlSearchLink = document.createElement('a') fitgirlSearchLink.href = 'https://fitgirl-repacks.site/?s=' + gameName fitgirlSearchLink.textContent = 'fitgirl' fitgirlSearchLink.setAttribute('target', '_blank') const deidetectedSearchLink = document.createElement('a') deidetectedSearchLink.href = 'https://deidetected.com/games?search=' + gameName deidetectedSearchLink.textContent = 'DEIdetected.com' deidetectedSearchLink.setAttribute('target', '_blank') const ytGameplaySearchLink = document.createElement('a') ytGameplaySearchLink.href = 'https://www.youtube.com/results?search_query=' + encodeURIComponent(gameName) + ' gameplay no commentary' ytGameplaySearchLink.textContent = 'Gameplay Vid' ytGameplaySearchLink.setAttribute('target', '_blank') metaLinksContainer.appendChild(gogSearchLink) metaLinksContainer.appendChild(csrinSearchLink) metaLinksContainer.appendChild(torrminatorrSearchLink) metaLinksContainer.appendChild(fitgirlSearchLink) metaLinksContainer.appendChild(deidetectedSearchLink) metaLinksContainer.appendChild(ytGameplaySearchLink) breadcrumbsContainer.appendChild(metaLinksContainer)
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址