pteplus vip

always vip

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

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

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

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.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name         pteplus vip
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  always vip
// @author       xiaoyu2er
// @match        https://pteplus.com.cn/*
// @icon         https://www.google.com/s2/favicons?domain=pteplus.com.cn
// @require      https://unpkg.com/xhook@latest/dist/xhook.min.js
// @grant        none
// @run-at document-start
// @license MIT

// ==/UserScript==

(function () {
    'use strict';

    xhook.after(function (request, response) {
        // console.log(request.url);
        if (request.url == '/api/user/info') {
            var res = response.text;
            var json = JSON.parse(res);
            json.message.vip_tag = 'practice_vip';
            json.message.vip_exprie = '' + (+new Date() + 10000);
            response.text = JSON.stringify(json);
        }
    });

})();