Pixeldrain bypass video block (keep original layout)

Show video even without logged in pixeldrain

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name                Pixeldrain bypass video block (keep original layout)
// @namespace           https://greasyfork.org/users/821661
// @match               https://pixeldrain.com/*
// @grant               GM.registerMenuCommand
// @version             1.1.3
// @require             https://update.greasyfork.org/scripts/526417/1540623/USToolkit.js
// @run-at              document-start
// @author              hdyzen
// @description         Show video even without logged in pixeldrain
// @license             GPL-3.0-only
// ==/UserScript==

function commands() {
    const useBypassUrl = JSON.parse(localStorage.getItem("bypass-url"));

    if (useBypassUrl) bypassVideoUrl();

    GM.registerMenuCommand(`Use bypass src: [${useBypassUrl ? "ON" : "OFF"}]`, e => {
        if (useBypassUrl || confirm("This use bypassed url (the video may slow down or not load). Are you sure?")) {
            localStorage.setItem("bypass-url", !useBypassUrl);
            window.location.reload();
        }
    });
}
commands();

function bypassVideoUrl() {
    const handleMutations = () => {
        const source = document.querySelector("source[src^='/api/']");

        if (source) source.src = source.src.replace("https://pixeldrain.com/api/file/", "https://pd.cybar.xyz/");
    };

    const observer = new MutationObserver(handleMutations);

    observer.observe(document.body || document.documentElement, {
        childList: true,
        subtree: true,
    });
}

Object.defineProperty(unsafeWindow, "viewer_data", {
    get: () => _viewer_data,
    set: value => {
        const files = value?.api_response?.files;

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

        _viewer_data = value;
    },
});