X-Classpad VIP Hack-X - discontinued

18/12/2022, 19:49:52

// ==UserScript==
// @name        X-Classpad VIP Hack-X - discontinued
// @namespace   Tampermonkey Scripts
// @match       https://classpad.net/*
// @grant       none
// @version     1.1 discontinued
// @author      PMHTools
// @description 18/12/2022, 19:49:52
// @license MIT
// ==/UserScript==
let n = 0
const i = setInterval(() => {
  try {
    Classpad.Services.UserService.canUseManifestControlledFeature = () => true
    Classpad.Services.UserService.canUsePaidFeature = () => true
    clearInterval(i)
  } catch {}
  if (++n > 200) clearInterval(i) // after 20s its probably over
}, 100)