qwen Override window.top Getter

Overrides window.top to return window itself

目前為 2025-05-29 提交的版本,檢視 最新版本

// ==UserScript==
// @name         qwen Override window.top Getter
// @description  Overrides window.top to return window itself
// @match        *://*/*
// @run-at       document-start
// @version 0.0.1.20250529080438
// @namespace https://gf.qytechs.cn/users/1435046
// ==/UserScript==

(function() {
    'use strict';

    Object.defineProperty(window, 'top', {
        get: function() {
            return window;
        },
        configurable: true
    });
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址