Build and commit changes
This commit is contained in:
parent
2801153c38
commit
d3851b3ce0
2 changed files with 39 additions and 3 deletions
File diff suppressed because one or more lines are too long
|
@ -13,7 +13,7 @@
|
||||||
// @match https://subscribestar.adult/*
|
// @match https://subscribestar.adult/*
|
||||||
// @grant none
|
// @grant none
|
||||||
// @downloadURL https://git.bowu.dev/bowu/UserScriptsPublic/raw/branch/main/build/free-porn.user.js
|
// @downloadURL https://git.bowu.dev/bowu/UserScriptsPublic/raw/branch/main/build/free-porn.user.js
|
||||||
// @version 1722609180358
|
// @version 1722610279340
|
||||||
// ==/UserScript==
|
// ==/UserScript==
|
||||||
|
|
||||||
"use strict";
|
"use strict";
|
||||||
|
@ -49,9 +49,45 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
|
||||||
handlers: {
|
handlers: {
|
||||||
onlyfans: function onlyfans() {
|
onlyfans: function onlyfans() {
|
||||||
console.log("[🦜] onlyfans called");
|
console.log("[🦜] onlyfans called");
|
||||||
|
// https://onlyfans.com/belledelphine
|
||||||
|
var parsed = new URL(location.href);
|
||||||
|
var id = parsed.pathname.split("/")[1];
|
||||||
|
var dd = figureDomain();
|
||||||
|
var dCreators = config.creators[dd[1]];
|
||||||
|
for (var key in dCreators) {
|
||||||
|
if (Object.hasOwnProperty.call(dCreators, key)) {
|
||||||
|
var creator = dCreators[key];
|
||||||
|
if (creator.id === id) {
|
||||||
|
clearInterval(looper);
|
||||||
|
var dest = locationGen(dd[0], dd[1], id);
|
||||||
|
if (confirm("Redirecting to " + dest)) {
|
||||||
|
location.href = dest;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
fansly: function fansly() {
|
fansly: function fansly() {
|
||||||
console.log("[🦜] fansly called");
|
console.log("[🦜] fansly called");
|
||||||
|
// https://fansly.com/Morgpie
|
||||||
|
var parsed = new URL(location.href);
|
||||||
|
var id = parsed.pathname.split("/")[1];
|
||||||
|
var dd = figureDomain();
|
||||||
|
var dCreators = config.creators[dd[1]];
|
||||||
|
for (var key in dCreators) {
|
||||||
|
if (Object.hasOwnProperty.call(dCreators, key)) {
|
||||||
|
var creator = dCreators[key];
|
||||||
|
if (creator.name === id) {
|
||||||
|
clearInterval(looper);
|
||||||
|
var dest = locationGen(dd[0], dd[1], creator.id);
|
||||||
|
if (confirm("Redirecting to " + dest)) {
|
||||||
|
location.href = dest;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
candfans: function candfans() {
|
candfans: function candfans() {
|
||||||
console.log("[🦜] candfans called");
|
console.log("[🦜] candfans called");
|
||||||
|
|
Loading…
Reference in a new issue