经典骗自己

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// ==UserScript==
// @name 经典骗自己
// @namespace http://tampermonkey.net/
// @version 2024-07-04
// @description 修改bugku个人中心页面所有显示出来的数据信息
// @author Garmin
// @match https://ctf.bugku.com/user/info/id/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=ctf.bugku.com
// @grant none
// ==/UserScript==

(function() {
'use strict';

document.body.contentEditable='true';
})();