您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Forces 4K resolution and the VP9 codec on Google Stadia; especially useful for clarity on ultra widescreen monitors
当前为
// ==UserScript== // @name Google Stadia - Force 4K VP9 // @namespace https://chipwolf.uk // @version 0.1 // @description Forces 4K resolution and the VP9 codec on Google Stadia; especially useful for clarity on ultra widescreen monitors // @author Chip Wolf // @match *://stadia.google.com/* // @grant none // ==/UserScript== (function() { 'use strict'; // source: https://gist.github.com/therocco/cfc98672d058496038755137611ea5c8 // set local codec to VP9 localStorage.setItem('video_codec_implementation_by_codec_key', '{"vp9":"ExternalDecoder"}'); // set 4k dimensions and screen values let x = 3840; let y = 2160; let screen = [ ['availHeight', y], ['availWidth', x], ['height', y], ['width', x] ]; // force new screen resolution screen.forEach(([prop, value]) => { Object.defineProperty(window.screen, prop, { value, configurable: true }); }); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址