PoseMyArt Premium Unlock

Reprograms the Settings button to unlock all premium features upon click.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         PoseMyArt Premium Unlock
// @namespace    http://tampermonkey.net/
// @version      6-3.7
// @description  Reprograms the Settings button to unlock all premium features upon click.
// @author       The Honorable Mustard Person
// @match        https://posemy.art/app/*
// @grant        none
// @run-at       document-end
// @license      CC0 1.0 Universal
// ==/UserScript==
 
(function() {
    'use strict';
 
 
    const readinessCheck = setInterval(() => {
        const settingsButton = document.getElementById('settingsMenuButton');
        const appElement = document.getElementById('v-app');
 
        if (settingsButton && appElement && appElement.__vue__ && appElement.__vue__.$children[0]) {
 
            clearInterval(readinessCheck);
            settingsButton.onclick = function(event) {
 
                event.preventDefault();
                event.stopPropagation();
 
                try {
                    const mainComponent = appElement.__vue__.$children[0];
 
                    mainComponent.isPremium = true;
                    mainComponent.isSignedIn = true;
                    mainComponent.userInfo = { is_lifetime_access: true };
 
                    mainComponent.$forceUpdate();
 
                    console.log('Premium Unlocked! The Settings button is now your unlock button.');
                } catch (e) {
                    console.error('Unlock Script Failed:', e);
                }
            };
 
            console.log('PoseMyArt Unlocker Ready. Click the "Settings" gear icon to unlock premium.');
        }
    }, 200); // Check every 200ms
})();