Show video even without logged

Show video even without logged in pixeldrain

目前为 2025-02-24 提交的版本。查看 最新版本

// ==UserScript==
// @name                Show video even without logged
// @namespace           https://gf.qytechs.cn/users/821661
// @match               https://pixeldrain.com/*
// @grant               none
// @version             1.1
// @run-at              document-start
// @author              hdyzen
// @description         Show video even without logged in pixeldrain
// @license             GPL-3.0-only
// ==/UserScript==

Object.defineProperty(window, "viewer_data", {
    get: () => _viewer_data,
    set: value => {
        console.log(value.api_response.files);

        for (const file of value.api_response.files) {
            console.log(file);
            file.allow_video_player = true;
        }

        _viewer_data = value;
    },
});

QingJ © 2025

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