FE-Interview docs Crack

try to take over the world!

Version vom 18.05.2022. Aktuellste Version

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         FE-Interview docs Crack
// @namespace    http://tampermonkey.net/
// @version      0.3
// @description  try to take over the world!
// @author       dsqh
// @include    *://*.poetries.top/*
// @include    *://poetries1.gitee.io/*
// @include    *://interview.poetries.top/*

// @license MIT
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    let token = localStorage.getItem("TOKEN_")
    let lockcode = localStorage.getItem("payLock")
    //console.log(token)
    //console.log(lockcode)
    if(token == null || lockcode === null){
        let time = (new Date()).valueOf()
        localStorage.setItem("TOKEN_","TOKEN_"+time)
        //console.log(localStorage.getItem("TOKEN_"))
        localStorage.setItem("payLock",'0000')
        //console.log(localStorage.getItem("payLock"))
        console.log('已破解!')
    } else {
        console.log('已解锁过了!')
    }
    // Your code here...
})();