-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathjmod.user.js
More file actions
23 lines (22 loc) · 844 Bytes
/
jmod.user.js
File metadata and controls
23 lines (22 loc) · 844 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// ==UserScript==
// @name Jmod - Bondage Club
// @namespace jmod
// @version 3.0.0
// @description [DEPRECATED] Jomshir's collection of changes and patches for Bondage Club
// @author jomshir98
// @match https://www.bondageprojects.elementfx.com/*/BondageClub/*
// @match https://www.bondageprojects.com/college/*/BondageClub/*
// @homepage https://jomshir98.github.io/testing/
// @downloadURL https://jomshir98.github.io/testing/jmod.user.js
// @run-at document-end
// @grant unsafeWindow
// ==/UserScript==
setTimeout(
function () {
"use strict";
if (confirm("JMod is now deprecated in favour of BCX.\nWould you like to read more?")) {
window.open("https://github.com/Jomshir98/bondage-club-extended#readme", "_blank");
}
},
window.unsafeWindow !== undefined ? 1500 : 0
);