SteamDeveloperSearch

Use legacy developer search when the developer link is clicked. 商店页点击开发商链接将使用旧版本搜索。

As of 2019-03-07. See the latest version.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name        SteamDeveloperSearch
// @description Use legacy developer search when the developer link is clicked. 商店页点击开发商链接将使用旧版本搜索。
// @namespace   https://greasyfork.org/users/255836-icue
// @version     0.20
// @match       https://store.steampowered.com/app/*
// ==/UserScript==

var elements = document.getElementsByClassName("summary column");
var dev = elements.item(elements.length - 2).firstElementChild;
dev.setAttribute("href", "https://store.steampowered.com/search/?developer=" + dev.text);