最近所有用的安卓浏览器突然不能正常访问了,害窝不得不再次更新Android WebView实际上还没,想着应该有更简单的方法于是把alook从9.3更新到10.9,因为看更新日志从10.1版升级Chromium内核到131版本,更新后小众等依赖最新WebView的暂时正常![]()
但没想到还有更简单的方法,就是添加以下脚本:
// ==UserScript==
// @name Meta Appinn Browser Fix
// @namespace https://shugen002.github.io/userscript
// @version 2025-08-28
// @description 让不支持的浏览器也能打开小众软件的论坛。(无视警告,继续执行!)
// @author shugen
// @match *://meta.appinn.net/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=appinn.com
// @grant unsafeWindow
// @license WTFPL
// @run-at document-start
// ==/UserScript==
(function() {
'use strict';
Object.defineProperty(
unsafeWindow,"unsupportedBrowser",{
get(){
return false
},
set(){}
}
)
})();
相关: