您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Reprograms the Settings button to unlock all premium features upon click.
// ==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 })();