您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Allows you to access the Skeletrix app url without an iPod
// ==UserScript== // @name Access Skeletrix // @namespace http://tampermonkey.net/ // @version 0.3 // @description Allows you to access the Skeletrix app url without an iPod // @author claiomhor // @match http://143.244.202.221/* // @grant none // @run-at document-start // @license MIT // ==/UserScript== (function() { 'use strict'; const newUserAgent = "Mozilla/5.0 (iPod; CPU iPhone OS 12_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1"; Object.defineProperty(navigator, 'userAgent', { get: function () { return newUserAgent; } }); })();