Meta Appinn Browser Fix

让不支持的浏览器也能打开小众软件的论坛。(无视警告,继续执行!)

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

You will need to install an extension such as Tampermonkey to install this script.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği indirebilmeniz için ayrıca Tampermonkey gibi bir eklenti kurmanız gerekmektedir.

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==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(){}
        }
    )
})();