您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
This just checks to see if you have Bit-Gamey code in the url, if you do not, it adds it. this will support our good friend!
- // ==UserScript==
- // @name Help support Bit-Gamey in the Unity Asset store
- // @namespace Violentmonkey Scripts
- // @match https://assetstore.unity.com/packages/*
- // @grant none
- // @version 1.0
- // @author Schaken
- // @icon https://render-state.to/wp-content/uploads/2020/09/cropped-favicon-290x290.png
- // @license MIT
- // @description This just checks to see if you have Bit-Gamey code in the url, if you do not, it adds it. this will support our good friend!
- // ==/UserScript==
- (function() {
- 'use strict';
- const aidParam = '?aid=1100le847';
- const currentURL = new URL(window.location.href);
- let urlSearchParams = new URLSearchParams(currentURL.search);
- if (!urlSearchParams.has('aid')) {
- urlSearchParams.set('aid', '1100le847');
- currentURL.search = urlSearchParams.toString();
- window.history.replaceState(null, '', currentURL.toString());
- }
- })();