Steam Search Filter

在Steam搜尋遊戲時,讓篩選器自動勾選特定語言和類型

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        Steam Search Filter
// @description 在Steam搜尋遊戲時,讓篩選器自動勾選特定語言和類型
// @icon https://store.steampowered.com/favicon.ico
// @author       Kamikiri
// @namespace    [email protected]
// @match     https://store.steampowered.com/search/?developer=*
// @match     https://store.steampowered.com/search?developer=*
// @match     https://store.steampowered.com/search/?publisher=*
// @match     https://store.steampowered.com/search?publisher=*
// @match     https://store.steampowered.com/search/?term=*
// @match     https://store.steampowered.com/search?term=*
// @match     https://store.steampowered.com/search/?snr=*
// @match     https://store.steampowered.com/search?snr=*
// @license     GPL
// @version     1.2
// @grant       none
// ==/UserScript==

var m = /^(https?:\/\/store\.steampowered\.com\/search\/?\?)(.*)/.exec(location.href);
if (m) location.href = m[1] + "supportedlang=tchinese%2Cschinese%2Cjapanese&category1=998&hidef2p=1&" + m[2] ;