您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
在Steam搜尋遊戲時,讓URL自動套用特定語言和類型的篩選器
// ==UserScript== // @name Steam Search Filter // @description 在Steam搜尋遊戲時,讓URL自動套用特定語言和類型的篩選器 // @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/?term=* // @match https://store.steampowered.com/search/?publisher=* // @match https://store.steampowered.com/search/?snr=*&term=* // @license GPL // @version 1.0 // @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] ;