2022-06-26 18:25:42 +00:00
|
|
|
// ==UserScript==
|
|
|
|
// @name MBCHC-loader
|
2022-06-30 14:07:45 +00:00
|
|
|
// @version 2
|
2022-06-26 18:25:42 +00:00
|
|
|
// @description Mute's Bondage Club Hacks Collection loader
|
|
|
|
// @author codename.mute@proton.me
|
|
|
|
// @namespace https://code.fleshless.org/mute/
|
2022-06-30 14:07:45 +00:00
|
|
|
// @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
|
2022-06-26 18:25:42 +00:00
|
|
|
// @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")
|
2022-06-30 14:07:45 +00:00
|
|
|
script.src = `https://code.fleshless.org/mute/MBCHC/raw/branch/master/mbchc.user.js?ts=${Date.now()}`
|
2022-06-26 18:25:42 +00:00
|
|
|
document.head.appendChild(script)
|
|
|
|
})()
|