这两天论坛老是提示浏览器需要升级,公司旧电脑带不了新浏览器,烦.
昨天在小众论坛见到了大神的油猴脚本解决方案.
千万不要告诉Discourse啊,不然又升级屏蔽手段了
原贴地址:
拿过来添加论坛地址后,也适用.
也可以自己去原贴复制并添加论坛地址.
// ==UserScript==
// @name Discourse Sikp
// @namespace https://shugen002.github.io/userscript
// @version 2025-08-28
// @description 让不支持的浏览器也能打开小众软件和freemdict的论坛。(无视警告,继续执行!)
// @author shugen
// @match *://meta.appinn.net/*
// @include https://*.freemdict.com/*
// @grant unsafeWindow
// @run-at document-start
// ==/UserScript==
(function() {
'use strict';
Object.defineProperty(
unsafeWindow,"unsupportedBrowser",{
get(){
return false
},
set(){}
}
)
})();