Greasy Fork is available in English.

Steam Game Page - Add Links To Game to Pirate sites, Trailer & Gameplay videos.

This script is a fork of CoopCoding's script.

// ==UserScript==
// @name         Steam Game Page - Add Links To Game to Pirate sites, Trailer & Gameplay videos.
// @namespace    masterofobzene
// @version      1.7
// @description  This script is a fork of CoopCoding's script.
// @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 steamripSearchLink = document.createElement('a')
steamripSearchLink.href = 'https://steamrip.com/?s=' + gameName
steamripSearchLink.textContent = 'steamrip.com'
steamripSearchLink.setAttribute('target', '_blank')

const ytTrailerSearchLink = document.createElement('a')
ytTrailerSearchLink.href = 'https://www.youtube.com/results?search_query=' + encodeURIComponent(gameName) + ' trailer'
ytTrailerSearchLink.textContent = 'Trailer'
ytTrailerSearchLink.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'
ytGameplaySearchLink.setAttribute('target', '_blank')


metaLinksContainer.appendChild(gogSearchLink)
metaLinksContainer.appendChild(csrinSearchLink)
metaLinksContainer.appendChild(steamripSearchLink)
metaLinksContainer.appendChild(ytTrailerSearchLink)
metaLinksContainer.appendChild(ytGameplaySearchLink)

breadcrumbsContainer.appendChild(metaLinksContainer)