Update 'mbchc-loader.user.js'

This commit is contained in:
Mute 2022-06-26 18:25:42 +00:00
parent 7501742785
commit 5583aebabb
2 changed files with 21 additions and 0 deletions

View File

21
mbchc-loader.user.js Normal file
View File

@ -0,0 +1,21 @@
// ==UserScript==
// @name MBCHC-loader
// @version 1
// @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/
// @match https://bondageprojects.elementfx.com/R*
// @match https://www.bondageprojects.elementfx.com/R*
// @match https://bondage-europe.com/R*
// @match https://www.bondage-europe.com/R*
// @grant none
// ==/UserScript==
(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}`
document.head.appendChild(script)
})()