Help support Bit-Gamey in the Unity Asset store

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!

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

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

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==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());
    }
})();