NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Steam - Türkçe Yama Deposu // @namespace https://teknoseyir.com/u/0x0001 // @version 1.4 // @description https://teknoseyir.com/durum/671175 // @author 0x0001 https://teknoseyir.com/u/0x0001 - basteryus https://teknoseyir.com/durum/671175 // @include http://store.steampowered.com/app/* // @include http://steamcommunity.com/sharedfiles/filedetails/?id=464077817 // @updateURL https://openuserjs.org/meta/0x0001/Steam_-_Türkçe_Yama_Deposu.meta.js // @grant GM_xmlhttpRequest // ==/UserScript== (function() { 'use strict'; if(!location.pathname.startsWith('/app/')) {return true;} function createDomBlock() { var block = document.createElement('div'); block.className = 'block responsive_apppage_details_left'; block.innerHTML = '<div class="block_title"><a href="http://steamcommunity.com/sharedfiles/filedetails/?id=464077817">Türkçe Yama Deposu</a></div><div id="tr-ym-dp">Loading...</div>'; var el = document.querySelector('.block.responsive_apppage_details_left'); el.parentElement.prepend(block); } createDomBlock(); function titleMakeClean(title) { return title.toLowerCase().replace('™', '').replace('®', '').replace('©', '').replace(':', ''); } function insertResults(data, workshopList) { var el = document.querySelector('#tr-ym-dp'); if (data.length > 0) { el.innerHTML = '<div style="display:block;text-align:center;margin:10px 0;font-size: 18px;">' + data[0].title + '</div>'+ '<a class="linkbar" href="' + data[0].source + '" target="_blank" rel="noreferrer">' + 'Kaynağı ziyaret et <img src="http://store.akamai.steamstatic.com/public/images/v5/ico_external_link.gif" border="0" align="bottom">' + '</a>' + '<a class="linkbar" href="' + data[0].download + '" target="_blank" rel="noreferrer">' + 'Indir <img src="http://store.akamai.steamstatic.com/public/images/v5/ico_external_link.gif" border="0" align="bottom">' + '</a>'+ '<br/><div style="display:block;text-align:center;color:#7d7d7d;">İndirilen dosyanın sorumluluğu size aittir.</div>'; } else if(workshopList.length > 0) { el.innerHTML = '<div style="display:block;text-align:center;margin:10px 0;font-size: 18px;">' + workshopList[0].title + '</div>'+ '<a class="linkbar" href="' + workshopList[0].download + '" target="_blank" rel="noreferrer">' + '(Atölye) Indir <img src="http://store.akamai.steamstatic.com/public/images/v5/ico_external_link.gif" border="0" align="bottom">' + '</a>'+ '<br/><div style="display:block;text-align:center;color:#7d7d7d;">İndirilen dosyanın sorumluluğu size aittir.</div>'; } else { el.innerHTML = '<div style="display:block;text-align:center;font-size:18px;"> >.< <br>Bulunamadı</div>'; } } var gameName = document.querySelector('.apphub_AppName').textContent.trim(); GM_xmlhttpRequest ( { method: 'GET', url: 'http://steamcommunity.com/sharedfiles/filedetails/?id=464077817', onload: function (res) { if (res.status === 200) { var resDoc = document.createElement("div"); resDoc.innerHTML = res.responseText; var all = []; resDoc.querySelectorAll(".bb_code").forEach(function(item, idx){ var title = item.querySelector(".bb_h1").textContent.trim(); if (titleMakeClean(title) === titleMakeClean(gameName)) { var rows = item.textContent.split('\n'); var source = rows[0].split(' - ')[1].replace(/\s+/g, ''); var download = rows[1].split(' - ')[1].replace(/\s+/g, ''); all.push({ title: gameName, source: source.startsWith('http:') ? source : 'http://' + source, download: download.startsWith('http:') ? download : 'http://' + download, }); } }); var workshop = []; resDoc.querySelectorAll('[id="701642"] a').forEach(function(item) { var title = titleMakeClean(item.textContent); var download = item.href; if (title === titleMakeClean(gameName)) { workshop.push({ title: gameName, download: download, }); } }); insertResults(all, workshop); } } }); })();