Update 'mbchc-loader.user.js'

This commit is contained in:
Mute 2022-06-30 14:07:45 +00:00
parent 9bfa8e1d9d
commit bf8e8ec5bb
1 changed files with 5 additions and 4 deletions

View File

@ -1,10 +1,12 @@
// ==UserScript==
// @name MBCHC-loader
// @version 1
// @version 2
// @description Mute's Bondage Club Hacks Collection loader
// @author codename.mute@proton.me
// @homepage https://code.fleshless.org/mute/MBCHC
// @namespace https://code.fleshless.org/mute/
// @homepage https://code.fleshless.org/mute/MBCHC
// @updateURL https://code.fleshless.org/mute/MBCHC/raw/branch/master/mbchc-loader.user.js
// @downloadURL https://code.fleshless.org/mute/MBCHC/raw/branch/master/mbchc-loader.user.js
// @match https://bondageprojects.elementfx.com/R*
// @match https://www.bondageprojects.elementfx.com/R*
// @match https://bondage-europe.com/R*
@ -15,7 +17,6 @@
(function () {
"use strict";
const script = document.createElement("script")
const ts = (Date.now() / 10000).toFixed(0)
script.src = `https://code.fleshless.org/mute/MBCHC/raw/branch/master/mbchc.user.js?ts=${ts}`
script.src = `https://code.fleshless.org/mute/MBCHC/raw/branch/master/mbchc.user.js?ts=${Date.now()}`
document.head.appendChild(script)
})()