pervert-monkey 1.0.22 → 1.0.24

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (59) hide show
  1. package/dist/core/pervertmonkey.core.es.d.ts +15 -14
  2. package/dist/core/pervertmonkey.core.es.js +1568 -1570
  3. package/dist/core/pervertmonkey.core.es.js.map +1 -1
  4. package/dist/core/pervertmonkey.core.umd.js +1568 -1570
  5. package/dist/core/pervertmonkey.core.umd.js.map +1 -1
  6. package/dist/userscripts/3hentai.user.js +5 -5
  7. package/dist/userscripts/camgirlfinder.user.js +5 -5
  8. package/dist/userscripts/camwhores.user.js +5 -5
  9. package/dist/userscripts/e-hentai.user.js +5 -5
  10. package/dist/userscripts/ebalka.user.js +5 -5
  11. package/dist/userscripts/eporner.user.js +5 -5
  12. package/dist/userscripts/erome.user.js +10 -6
  13. package/dist/userscripts/eroprofile.user.js +5 -5
  14. package/dist/userscripts/javhdporn.user.js +5 -5
  15. package/dist/userscripts/missav.user.js +5 -5
  16. package/dist/userscripts/motherless.user.js +5 -5
  17. package/dist/userscripts/namethatporn.user.js +5 -5
  18. package/dist/userscripts/nhentai.user.js +5 -5
  19. package/dist/userscripts/obmenvsem.user.js +5 -5
  20. package/dist/userscripts/pornhub.user.js +5 -5
  21. package/dist/userscripts/socialmediagirls.user.js +40 -0
  22. package/dist/userscripts/spankbang.user.js +5 -5
  23. package/dist/userscripts/thisvid.user.js +5 -5
  24. package/dist/userscripts/xhamster.user.js +5 -5
  25. package/dist/userscripts/xvideos.user.js +5 -5
  26. package/package.json +2 -2
  27. package/src/core/data-handler/data-manager.ts +13 -16
  28. package/src/core/parsers/pagination-parser/pagination-strategies/PaginationStrategyPathnameParams.ts +4 -2
  29. package/src/userscripts/index.ts +1 -1
  30. package/src/userscripts/meta.json +3 -4
  31. package/src/userscripts/scripts/3hentai.ts +1 -1
  32. package/src/userscripts/scripts/camgirlfinder.ts +1 -1
  33. package/src/userscripts/scripts/camwhores.ts +1 -1
  34. package/src/userscripts/scripts/e-hentai.ts +1 -1
  35. package/src/userscripts/scripts/ebalka.ts +1 -1
  36. package/src/userscripts/scripts/eporner.ts +1 -1
  37. package/src/userscripts/scripts/erome.ts +8 -3
  38. package/src/userscripts/scripts/eroprofile.ts +1 -1
  39. package/src/userscripts/scripts/javhdporn.ts +1 -1
  40. package/src/userscripts/scripts/missav.ts +1 -1
  41. package/src/userscripts/scripts/motherless.ts +1 -1
  42. package/src/userscripts/scripts/namethatporn.ts +1 -1
  43. package/src/userscripts/scripts/nhentai.ts +1 -1
  44. package/src/userscripts/scripts/obmenvsem.ts +1 -1
  45. package/src/userscripts/scripts/pornhub.ts +1 -1
  46. package/src/userscripts/scripts/socialmediagirls.ts +26 -0
  47. package/src/userscripts/scripts/spankbang.ts +1 -1
  48. package/src/userscripts/scripts/thisvid.ts +1 -1
  49. package/src/userscripts/scripts/xhamster.ts +2 -2
  50. package/src/userscripts/scripts/xvideos.ts +1 -1
  51. package/src/utils/dom/attributes.ts +54 -0
  52. package/src/utils/dom/index.ts +4 -165
  53. package/src/utils/dom/miscellaneous.ts +55 -0
  54. package/src/utils/dom/selectors.ts +48 -0
  55. package/src/utils/events/index.ts +2 -2
  56. package/src/utils/observers/index.ts +16 -11
  57. package/src/utils/observers/lazy-image-loader.ts +13 -11
  58. package/src/utils/performance/index.ts +10 -4
  59. /package/src/utils/dom/{dom-observers.ts → observers.ts} +0 -0
@@ -1,17 +1,17 @@
1
1
  // ==UserScript==
2
2
  // @name 3Hentai PervertMonkey
3
3
  // @namespace pervertmonkey
4
- // @version 1.0.14
4
+ // @version 1.0.18
5
5
  // @author violent-orangutan
6
6
  // @description Infinite scroll [optional], Filter by Title, thumb preview
7
7
  // @license MIT
8
8
  // @icon https://www.google.com/s2/favicons?sz=64&domain=3hentai.net
9
- // @homepage https://github.com/smartacephale/sleazy-fork
10
- // @homepageURL https://github.com/smartacephale/sleazy-fork
11
- // @source github:smartacephale/sleazy-fork
9
+ // @homepage https://github.com/smartacephale/sleazy-fork#readme
10
+ // @homepageURL https://sleazyfork.org/en/users/1253342-smartacephale
11
+ // @source https://github.com/smartacephale
12
12
  // @supportURL https://github.com/smartacephale/sleazy-fork/issues
13
13
  // @match https://*.3hentai.net/*
14
- // @require https://cdn.jsdelivr.net/npm/pervert-monkey@1.0.22/dist/core/pervertmonkey.core.umd.js
14
+ // @require https://cdn.jsdelivr.net/npm/pervert-monkey@1.0.24/dist/core/pervertmonkey.core.umd.js
15
15
  // @require data:application/javascript,var core = window.pervertmonkey.core || pervertmonkey.core; var utils = core;
16
16
  // @grant GM_addStyle
17
17
  // @grant unsafeWindow
@@ -1,17 +1,17 @@
1
1
  // ==UserScript==
2
2
  // @name CamGirlFinder PervertMonkey
3
3
  // @namespace pervertmonkey
4
- // @version 1.6.13
4
+ // @version 1.6.17
5
5
  // @author violent-orangutan
6
6
  // @description Adds model links for CamWhores, webcamrecordings, recu.me, camvideos, privat-zapisi
7
7
  // @license MIT
8
8
  // @icon https://www.google.com/s2/favicons?sz=64&domain=camgirlfinder.net
9
- // @homepage https://github.com/smartacephale/sleazy-fork
10
- // @homepageURL https://github.com/smartacephale/sleazy-fork
11
- // @source github:smartacephale/sleazy-fork
9
+ // @homepage https://github.com/smartacephale/sleazy-fork#readme
10
+ // @homepageURL https://sleazyfork.org/en/users/1253342-smartacephale
11
+ // @source https://github.com/smartacephale
12
12
  // @supportURL https://github.com/smartacephale/sleazy-fork/issues
13
13
  // @match https://camgirlfinder.net/*
14
- // @require https://cdn.jsdelivr.net/npm/pervert-monkey@1.0.22/dist/core/pervertmonkey.core.umd.js
14
+ // @require https://cdn.jsdelivr.net/npm/pervert-monkey@1.0.24/dist/core/pervertmonkey.core.umd.js
15
15
  // @require data:application/javascript,var core = window.pervertmonkey.core || pervertmonkey.core; var utils = core;
16
16
  // @grant none
17
17
  // @run-at document-idle
@@ -1,19 +1,19 @@
1
1
  // ==UserScript==
2
2
  // @name CamWhores PervertMonkey
3
3
  // @namespace pervertmonkey
4
- // @version 3.0.17
4
+ // @version 3.0.21
5
5
  // @author violent-orangutan
6
6
  // @description Infinite scroll [optional]. Filter by Title, Duration and Private/Public. Sort by Duration and Views. Mass friend request button. Download button
7
7
  // @license MIT
8
8
  // @icon https://www.google.com/s2/favicons?sz=64&domain=camwhores.tv
9
- // @homepage https://github.com/smartacephale/sleazy-fork
10
- // @homepageURL https://github.com/smartacephale/sleazy-fork
11
- // @source github:smartacephale/sleazy-fork
9
+ // @homepage https://github.com/smartacephale/sleazy-fork#readme
10
+ // @homepageURL https://sleazyfork.org/en/users/1253342-smartacephale
11
+ // @source https://github.com/smartacephale
12
12
  // @supportURL https://github.com/smartacephale/sleazy-fork/issues
13
13
  // @match https://*.camwhores.tv
14
14
  // @match https://*.camwhores.*/*
15
15
  // @exclude https://*.camwhores.tv/*mode=async*
16
- // @require https://cdn.jsdelivr.net/npm/pervert-monkey@1.0.22/dist/core/pervertmonkey.core.umd.js
16
+ // @require https://cdn.jsdelivr.net/npm/pervert-monkey@1.0.24/dist/core/pervertmonkey.core.umd.js
17
17
  // @require data:application/javascript,var core = window.pervertmonkey.core || pervertmonkey.core; var utils = core;
18
18
  // @grant GM_addStyle
19
19
  // @grant unsafeWindow
@@ -1,17 +1,17 @@
1
1
  // ==UserScript==
2
2
  // @name E-Hentai PervertMonkey
3
3
  // @namespace pervertmonkey
4
- // @version 1.0.14
4
+ // @version 1.0.18
5
5
  // @author violent-orangutan
6
6
  // @description Infinite scroll [optional], Filter by Title
7
7
  // @license MIT
8
8
  // @icon https://www.google.com/s2/favicons?sz=64&domain=e-hentai.org
9
- // @homepage https://github.com/smartacephale/sleazy-fork
10
- // @homepageURL https://github.com/smartacephale/sleazy-fork
11
- // @source github:smartacephale/sleazy-fork
9
+ // @homepage https://github.com/smartacephale/sleazy-fork#readme
10
+ // @homepageURL https://sleazyfork.org/en/users/1253342-smartacephale
11
+ // @source https://github.com/smartacephale
12
12
  // @supportURL https://github.com/smartacephale/sleazy-fork/issues
13
13
  // @match https://*.e-hentai.org/*
14
- // @require https://cdn.jsdelivr.net/npm/pervert-monkey@1.0.22/dist/core/pervertmonkey.core.umd.js
14
+ // @require https://cdn.jsdelivr.net/npm/pervert-monkey@1.0.24/dist/core/pervertmonkey.core.umd.js
15
15
  // @require data:application/javascript,var core = window.pervertmonkey.core || pervertmonkey.core; var utils = core;
16
16
  // @grant GM_addStyle
17
17
  // @grant unsafeWindow
@@ -1,21 +1,21 @@
1
1
  // ==UserScript==
2
2
  // @name Ebalka PervertMonkey
3
3
  // @namespace pervertmonkey
4
- // @version 3.0.15
4
+ // @version 3.0.19
5
5
  // @author violent-orangutan
6
6
  // @description Infinite scroll [optional], Filter by Title and Duration, Sort by Duration, Download button.
7
7
  // @license MIT
8
8
  // @icon https://www.google.com/s2/favicons?sz=64&domain=ebalka.zip
9
- // @homepage https://github.com/smartacephale/sleazy-fork
10
- // @homepageURL https://github.com/smartacephale/sleazy-fork
11
- // @source github:smartacephale/sleazy-fork
9
+ // @homepage https://github.com/smartacephale/sleazy-fork#readme
10
+ // @homepageURL https://sleazyfork.org/en/users/1253342-smartacephale
11
+ // @source https://github.com/smartacephale
12
12
  // @supportURL https://github.com/smartacephale/sleazy-fork/issues
13
13
  // @match https://b.ebalka.zip/*
14
14
  // @match https://a.ebalka.love/*
15
15
  // @match https://*ebalka.*.*/*
16
16
  // @match https://*.ebalk*.*/*
17
17
  // @match https://*.fuckingbear*.*/*
18
- // @require https://cdn.jsdelivr.net/npm/pervert-monkey@1.0.22/dist/core/pervertmonkey.core.umd.js
18
+ // @require https://cdn.jsdelivr.net/npm/pervert-monkey@1.0.24/dist/core/pervertmonkey.core.umd.js
19
19
  // @require data:application/javascript,var core = window.pervertmonkey.core || pervertmonkey.core; var utils = core;
20
20
  // @grant GM_addStyle
21
21
  // @grant unsafeWindow
@@ -1,18 +1,18 @@
1
1
  // ==UserScript==
2
2
  // @name Eporner PervertMonkey
3
3
  // @namespace pervertmonkey
4
- // @version 2.0.16
4
+ // @version 2.0.20
5
5
  // @author violent-orangutan
6
6
  // @description Infinite scroll [optional], Filter by Title, Uploader, Duration and HD, Sort by Views and Duration
7
7
  // @license MIT
8
8
  // @icon https://www.google.com/s2/favicons?sz=64&domain=eporner.com
9
- // @homepage https://github.com/smartacephale/sleazy-fork
10
- // @homepageURL https://github.com/smartacephale/sleazy-fork
11
- // @source github:smartacephale/sleazy-fork
9
+ // @homepage https://github.com/smartacephale/sleazy-fork#readme
10
+ // @homepageURL https://sleazyfork.org/en/users/1253342-smartacephale
11
+ // @source https://github.com/smartacephale
12
12
  // @supportURL https://github.com/smartacephale/sleazy-fork/issues
13
13
  // @match https://*.eporner.com/*
14
14
  // @match https://*.eporner.*/*
15
- // @require https://cdn.jsdelivr.net/npm/pervert-monkey@1.0.22/dist/core/pervertmonkey.core.umd.js
15
+ // @require https://cdn.jsdelivr.net/npm/pervert-monkey@1.0.24/dist/core/pervertmonkey.core.umd.js
16
16
  // @require data:application/javascript,var core = window.pervertmonkey.core || pervertmonkey.core; var utils = core;
17
17
  // @grant GM_addStyle
18
18
  // @grant unsafeWindow
@@ -1,17 +1,17 @@
1
1
  // ==UserScript==
2
2
  // @name Erome PervertMonkey
3
3
  // @namespace pervertmonkey
4
- // @version 5.0.15
4
+ // @version 5.0.19
5
5
  // @author violent-orangutan
6
- // @description Infinite scroll [optional], Filter by Title, Uploader and Video/Photo albums, Sort by Views. Show/Hide Photos in album. Remove disclaimer.
6
+ // @description Infinite scroll [optional], Filter by Title, Uploader and Video/Photo albums, Sort by Views. Show/Hide Photos in album. Remove disclaimer. Restore Search Bar
7
7
  // @license MIT
8
8
  // @icon https://www.google.com/s2/favicons?sz=64&domain=erome.com
9
- // @homepage https://github.com/smartacephale/sleazy-fork
10
- // @homepageURL https://github.com/smartacephale/sleazy-fork
11
- // @source github:smartacephale/sleazy-fork
9
+ // @homepage https://github.com/smartacephale/sleazy-fork#readme
10
+ // @homepageURL https://sleazyfork.org/en/users/1253342-smartacephale
11
+ // @source https://github.com/smartacephale
12
12
  // @supportURL https://github.com/smartacephale/sleazy-fork/issues
13
13
  // @match *://*.erome.com/*
14
- // @require https://cdn.jsdelivr.net/npm/pervert-monkey@1.0.22/dist/core/pervertmonkey.core.umd.js
14
+ // @require https://cdn.jsdelivr.net/npm/pervert-monkey@1.0.24/dist/core/pervertmonkey.core.umd.js
15
15
  // @require data:application/javascript,var core = window.pervertmonkey.core || pervertmonkey.core; var utils = core;
16
16
  // @grant GM_addStyle
17
17
  // @grant unsafeWindow
@@ -97,5 +97,9 @@
97
97
  if (IS_ALBUM_PAGE) {
98
98
  setupAlbumPage();
99
99
  }
100
+ (function restoreSearchBar() {
101
+ $('[aria-label="Search"]').click(() => $("#searchModal").show());
102
+ $("#searchModal .close").click(() => $("#searchModal").hide());
103
+ })();
100
104
 
101
105
  })(core);
@@ -1,17 +1,17 @@
1
1
  // ==UserScript==
2
2
  // @name Eroprofile PervertMonkey
3
3
  // @namespace pervertmonkey
4
- // @version 2.0.14
4
+ // @version 2.0.18
5
5
  // @author violent-orangutan
6
6
  // @description Infinite scroll [optional], Filter by Title and Duration, Sort by Duration
7
7
  // @license MIT
8
8
  // @icon https://www.google.com/s2/favicons?sz=64&domain=eroprofile.com
9
- // @homepage https://github.com/smartacephale/sleazy-fork
10
- // @homepageURL https://github.com/smartacephale/sleazy-fork
11
- // @source github:smartacephale/sleazy-fork
9
+ // @homepage https://github.com/smartacephale/sleazy-fork#readme
10
+ // @homepageURL https://sleazyfork.org/en/users/1253342-smartacephale
11
+ // @source https://github.com/smartacephale
12
12
  // @supportURL https://github.com/smartacephale/sleazy-fork/issues
13
13
  // @match https://*.eroprofile.com/*
14
- // @require https://cdn.jsdelivr.net/npm/pervert-monkey@1.0.22/dist/core/pervertmonkey.core.umd.js
14
+ // @require https://cdn.jsdelivr.net/npm/pervert-monkey@1.0.24/dist/core/pervertmonkey.core.umd.js
15
15
  // @require data:application/javascript,var core = window.pervertmonkey.core || pervertmonkey.core; var utils = core;
16
16
  // @grant GM_addStyle
17
17
  // @grant unsafeWindow
@@ -1,18 +1,18 @@
1
1
  // ==UserScript==
2
2
  // @name Javhdporn PervertMonkey
3
3
  // @namespace pervertmonkey
4
- // @version 3.0.14
4
+ // @version 3.0.18
5
5
  // @author violent-orangutan
6
6
  // @description Infinite scroll [optional], Filter by Title and Duration, Sort By Duration and Views
7
7
  // @license MIT
8
8
  // @icon https://www.google.com/s2/favicons?sz=64&domain=javhdporn.net
9
- // @homepage https://github.com/smartacephale/sleazy-fork
10
- // @homepageURL https://github.com/smartacephale/sleazy-fork
11
- // @source github:smartacephale/sleazy-fork
9
+ // @homepage https://github.com/smartacephale/sleazy-fork#readme
10
+ // @homepageURL https://sleazyfork.org/en/users/1253342-smartacephale
11
+ // @source https://github.com/smartacephale
12
12
  // @supportURL https://github.com/smartacephale/sleazy-fork/issues
13
13
  // @match https://*.javhdporn.net/*
14
14
  // @match https://*.javhdporn.*/*
15
- // @require https://cdn.jsdelivr.net/npm/pervert-monkey@1.0.22/dist/core/pervertmonkey.core.umd.js
15
+ // @require https://cdn.jsdelivr.net/npm/pervert-monkey@1.0.24/dist/core/pervertmonkey.core.umd.js
16
16
  // @require data:application/javascript,var core = window.pervertmonkey.core || pervertmonkey.core; var utils = core;
17
17
  // @grant GM_addStyle
18
18
  // @grant unsafeWindow
@@ -1,21 +1,21 @@
1
1
  // ==UserScript==
2
2
  // @name Missav PervertMonkey
3
3
  // @namespace pervertmonkey
4
- // @version 3.0.13
4
+ // @version 3.0.17
5
5
  // @author violent-orangutan
6
6
  // @description Infinite scroll [optional], Filter by Title and Duration, Sort by Duration
7
7
  // @license MIT
8
8
  // @icon https://www.google.com/s2/favicons?sz=64&domain=missav123.com
9
- // @homepage https://github.com/smartacephale/sleazy-fork
10
- // @homepageURL https://github.com/smartacephale/sleazy-fork
11
- // @source github:smartacephale/sleazy-fork
9
+ // @homepage https://github.com/smartacephale/sleazy-fork#readme
10
+ // @homepageURL https://sleazyfork.org/en/users/1253342-smartacephale
11
+ // @source https://github.com/smartacephale
12
12
  // @supportURL https://github.com/smartacephale/sleazy-fork/issues
13
13
  // @match https://*.missav123.com/*
14
14
  // @match https://*.missav.*/*
15
15
  // @match https://*.missav.ws/*
16
16
  // @match https://*.missav.to/*
17
17
  // @match https://*.missav.live/*
18
- // @require https://cdn.jsdelivr.net/npm/pervert-monkey@1.0.22/dist/core/pervertmonkey.core.umd.js
18
+ // @require https://cdn.jsdelivr.net/npm/pervert-monkey@1.0.24/dist/core/pervertmonkey.core.umd.js
19
19
  // @require data:application/javascript,var core = window.pervertmonkey.core || pervertmonkey.core; var utils = core;
20
20
  // @grant GM_addStyle
21
21
  // @grant unsafeWindow
@@ -1,17 +1,17 @@
1
1
  // ==UserScript==
2
2
  // @name Motherless PervertMonkey
3
3
  // @namespace pervertmonkey
4
- // @version 5.0.15
4
+ // @version 5.0.19
5
5
  // @author violent-orangutan
6
6
  // @description Infinite scroll [optional], Filter by Title, Uploader and Duration, Sort by Duration and Views
7
7
  // @license MIT
8
8
  // @icon https://www.google.com/s2/favicons?sz=64&domain=motherless.com
9
- // @homepage https://github.com/smartacephale/sleazy-fork
10
- // @homepageURL https://github.com/smartacephale/sleazy-fork
11
- // @source github:smartacephale/sleazy-fork
9
+ // @homepage https://github.com/smartacephale/sleazy-fork#readme
10
+ // @homepageURL https://sleazyfork.org/en/users/1253342-smartacephale
11
+ // @source https://github.com/smartacephale
12
12
  // @supportURL https://github.com/smartacephale/sleazy-fork/issues
13
13
  // @match https://motherless.com/*
14
- // @require https://cdn.jsdelivr.net/npm/pervert-monkey@1.0.22/dist/core/pervertmonkey.core.umd.js
14
+ // @require https://cdn.jsdelivr.net/npm/pervert-monkey@1.0.24/dist/core/pervertmonkey.core.umd.js
15
15
  // @require data:application/javascript,var core = window.pervertmonkey.core || pervertmonkey.core; var utils = core;
16
16
  // @grant GM_addElement
17
17
  // @grant GM_addStyle
@@ -1,17 +1,17 @@
1
1
  // ==UserScript==
2
2
  // @name NameThatPorn PervertMonkey
3
3
  // @namespace pervertmonkey
4
- // @version 3.0.14
4
+ // @version 3.0.18
5
5
  // @author violent-orangutan
6
6
  // @description Infinite scroll [optional], Filter by Title, Uploader and Solved/Unsolved
7
7
  // @license MIT
8
8
  // @icon https://www.google.com/s2/favicons?sz=64&domain=namethatporn.com
9
- // @homepage https://github.com/smartacephale/sleazy-fork
10
- // @homepageURL https://github.com/smartacephale/sleazy-fork
11
- // @source github:smartacephale/sleazy-fork
9
+ // @homepage https://github.com/smartacephale/sleazy-fork#readme
10
+ // @homepageURL https://sleazyfork.org/en/users/1253342-smartacephale
11
+ // @source https://github.com/smartacephale
12
12
  // @supportURL https://github.com/smartacephale/sleazy-fork/issues
13
13
  // @match https://namethatporn.com/*
14
- // @require https://cdn.jsdelivr.net/npm/pervert-monkey@1.0.22/dist/core/pervertmonkey.core.umd.js
14
+ // @require https://cdn.jsdelivr.net/npm/pervert-monkey@1.0.24/dist/core/pervertmonkey.core.umd.js
15
15
  // @require data:application/javascript,var core = window.pervertmonkey.core || pervertmonkey.core; var utils = core;
16
16
  // @grant GM_addStyle
17
17
  // @grant unsafeWindow
@@ -1,18 +1,18 @@
1
1
  // ==UserScript==
2
2
  // @name NHentai PervertMonkey
3
3
  // @namespace pervertmonkey
4
- // @version 4.0.14
4
+ // @version 4.0.18
5
5
  // @author violent-orangutan
6
6
  // @description Infinite scroll [optional], Filter by Title
7
7
  // @license MIT
8
8
  // @icon https://www.google.com/s2/favicons?sz=64&domain=nhentai.net
9
- // @homepage https://github.com/smartacephale/sleazy-fork
10
- // @homepageURL https://github.com/smartacephale/sleazy-fork
11
- // @source github:smartacephale/sleazy-fork
9
+ // @homepage https://github.com/smartacephale/sleazy-fork#readme
10
+ // @homepageURL https://sleazyfork.org/en/users/1253342-smartacephale
11
+ // @source https://github.com/smartacephale
12
12
  // @supportURL https://github.com/smartacephale/sleazy-fork/issues
13
13
  // @match https://*.nhentai.net/*
14
14
  // @match https://*.nhentai.*/*
15
- // @require https://cdn.jsdelivr.net/npm/pervert-monkey@1.0.22/dist/core/pervertmonkey.core.umd.js
15
+ // @require https://cdn.jsdelivr.net/npm/pervert-monkey@1.0.24/dist/core/pervertmonkey.core.umd.js
16
16
  // @require data:application/javascript,var core = window.pervertmonkey.core || pervertmonkey.core; var utils = core;
17
17
  // @grant GM_addStyle
18
18
  // @grant unsafeWindow
@@ -1,19 +1,19 @@
1
1
  // ==UserScript==
2
2
  // @name Obmenvsem PervertMonkey
3
3
  // @namespace pervertmonkey
4
- // @version 1.0.16
4
+ // @version 1.0.20
5
5
  // @author violent-orangutan
6
6
  // @description Infinite scroll [optional], Filter by Title and Duration, Sort by Duration
7
7
  // @license MIT
8
8
  // @icon https://www.google.com/s2/favicons?sz=64&domain=obmenvsem.com
9
- // @homepage https://github.com/smartacephale/sleazy-fork
10
- // @homepageURL https://github.com/smartacephale/sleazy-fork
11
- // @source github:smartacephale/sleazy-fork
9
+ // @homepage https://github.com/smartacephale/sleazy-fork#readme
10
+ // @homepageURL https://sleazyfork.org/en/users/1253342-smartacephale
11
+ // @source https://github.com/smartacephale
12
12
  // @supportURL https://github.com/smartacephale/sleazy-fork/issues
13
13
  // @match https://*.obmenvsem.com/*
14
14
  // @match https://*.obmenvsem.*/*
15
15
  // @match https://*.obmenvsems.*/*
16
- // @require https://cdn.jsdelivr.net/npm/pervert-monkey@1.0.22/dist/core/pervertmonkey.core.umd.js
16
+ // @require https://cdn.jsdelivr.net/npm/pervert-monkey@1.0.24/dist/core/pervertmonkey.core.umd.js
17
17
  // @require data:application/javascript,var core = window.pervertmonkey.core || pervertmonkey.core; var utils = core;
18
18
  // @grant GM_addElement
19
19
  // @grant GM_addStyle
@@ -1,18 +1,18 @@
1
1
  // ==UserScript==
2
2
  // @name PornHub PervertMonkey
3
3
  // @namespace pervertmonkey
4
- // @version 4.0.14
4
+ // @version 4.0.18
5
5
  // @author violent-orangutan
6
6
  // @description Infinite scroll [optional]. Filter by Title, Uploader and Duration. Sort by Duration and Views
7
7
  // @license MIT
8
8
  // @icon https://www.google.com/s2/favicons?sz=64&domain=pornhub.com
9
- // @homepage https://github.com/smartacephale/sleazy-fork
10
- // @homepageURL https://github.com/smartacephale/sleazy-fork
11
- // @source github:smartacephale/sleazy-fork
9
+ // @homepage https://github.com/smartacephale/sleazy-fork#readme
10
+ // @homepageURL https://sleazyfork.org/en/users/1253342-smartacephale
11
+ // @source https://github.com/smartacephale
12
12
  // @supportURL https://github.com/smartacephale/sleazy-fork/issues
13
13
  // @match https://*.pornhub.com/*
14
14
  // @exclude https://*.pornhub.com/embed/*
15
- // @require https://cdn.jsdelivr.net/npm/pervert-monkey@1.0.22/dist/core/pervertmonkey.core.umd.js
15
+ // @require https://cdn.jsdelivr.net/npm/pervert-monkey@1.0.24/dist/core/pervertmonkey.core.umd.js
16
16
  // @require data:application/javascript,var core = window.pervertmonkey.core || pervertmonkey.core; var utils = core;
17
17
  // @grant GM_addStyle
18
18
  // @grant unsafeWindow
@@ -0,0 +1,40 @@
1
+ // ==UserScript==
2
+ // @name Socialmediagirls PervertMonkey
3
+ // @namespace pervertmonkey
4
+ // @version 1.0.2
5
+ // @author violent-orangutan
6
+ // @description Infinite scroll [optional], Filter by Title
7
+ // @license MIT
8
+ // @icon https://www.google.com/s2/favicons?sz=64&domain=socialmediagirls.com
9
+ // @homepage https://github.com/smartacephale/sleazy-fork#readme
10
+ // @homepageURL https://sleazyfork.org/en/users/1253342-smartacephale
11
+ // @source https://github.com/smartacephale
12
+ // @supportURL https://github.com/smartacephale/sleazy-fork/issues
13
+ // @match https://forums.socialmediagirls.com/threads/*
14
+ // @require https://cdn.jsdelivr.net/npm/pervert-monkey@1.0.24/dist/core/pervertmonkey.core.umd.js
15
+ // @require data:application/javascript,var core = window.pervertmonkey.core || pervertmonkey.core; var utils = core;
16
+ // @grant GM_addStyle
17
+ // @grant unsafeWindow
18
+ // @run-at document-end
19
+ // ==/UserScript==
20
+
21
+ (function (core) {
22
+ 'use strict';
23
+
24
+ new core.Rules({
25
+ containerSelector: ".js-replyNewMessageContainer",
26
+ paginationStrategyOptions: {
27
+ paginationSelector: ".pageNavWrapper",
28
+ pathnameSelector: /\d+/
29
+ },
30
+ thumbs: {
31
+ selector: "article.message"
32
+ },
33
+ thumb: {
34
+ strategy: "auto-text"
35
+ },
36
+ gropeStrategy: "all-in-all",
37
+ schemeOptions: ["Title Filter", "Badge", "Advanced"]
38
+ });
39
+
40
+ })(core);
@@ -1,18 +1,18 @@
1
1
  // ==UserScript==
2
2
  // @name SpankBang.com PervertMonkey
3
3
  // @namespace pervertmonkey
4
- // @version 4.0.14
4
+ // @version 4.0.18
5
5
  // @author violent-orangutan
6
6
  // @description Infinite scroll [optional]. Filter by Title and Duration. Sort by Duration and Views
7
7
  // @license MIT
8
8
  // @icon https://www.google.com/s2/favicons?sz=64&domain=spankbang.com
9
- // @homepage https://github.com/smartacephale/sleazy-fork
10
- // @homepageURL https://github.com/smartacephale/sleazy-fork
11
- // @source github:smartacephale/sleazy-fork
9
+ // @homepage https://github.com/smartacephale/sleazy-fork#readme
10
+ // @homepageURL https://sleazyfork.org/en/users/1253342-smartacephale
11
+ // @source https://github.com/smartacephale
12
12
  // @supportURL https://github.com/smartacephale/sleazy-fork/issues
13
13
  // @match https://*.spankbang.com/*
14
14
  // @match https://*.spankbang.*/*
15
- // @require https://cdn.jsdelivr.net/npm/pervert-monkey@1.0.22/dist/core/pervertmonkey.core.umd.js
15
+ // @require https://cdn.jsdelivr.net/npm/pervert-monkey@1.0.24/dist/core/pervertmonkey.core.umd.js
16
16
  // @require data:application/javascript,var core = window.pervertmonkey.core || pervertmonkey.core; var utils = core;
17
17
  // @grant GM_addStyle
18
18
  // @grant unsafeWindow
@@ -1,17 +1,17 @@
1
1
  // ==UserScript==
2
2
  // @name ThisVid.com PervertMonkey
3
3
  // @namespace pervertmonkey
4
- // @version 8.0.15
4
+ // @version 8.0.19
5
5
  // @author violent-orangutan
6
6
  // @description Infinite scroll [optional]. Preview for private videos. Filter by Title, Duration, Quality and Public/Private. Sort by Duration and Views. Private/Public feed of friends uploads. Check access to private vids. Mass friend request button. Sorts messages. Download button 📼
7
7
  // @license MIT
8
8
  // @icon https://www.google.com/s2/favicons?sz=64&domain=thisvid.com
9
- // @homepage https://github.com/smartacephale/sleazy-fork
10
- // @homepageURL https://github.com/smartacephale/sleazy-fork
11
- // @source github:smartacephale/sleazy-fork
9
+ // @homepage https://github.com/smartacephale/sleazy-fork#readme
10
+ // @homepageURL https://sleazyfork.org/en/users/1253342-smartacephale
11
+ // @source https://github.com/smartacephale
12
12
  // @supportURL https://github.com/smartacephale/sleazy-fork/issues
13
13
  // @match https://*.thisvid.com/*
14
- // @require https://cdn.jsdelivr.net/npm/pervert-monkey@1.0.22/dist/core/pervertmonkey.core.umd.js
14
+ // @require https://cdn.jsdelivr.net/npm/pervert-monkey@1.0.24/dist/core/pervertmonkey.core.umd.js
15
15
  // @require data:application/javascript,var core = window.pervertmonkey.core || pervertmonkey.core; var utils = core;
16
16
  // @grant GM_addStyle
17
17
  // @grant unsafeWindow
@@ -1,19 +1,19 @@
1
1
  // ==UserScript==
2
2
  // @name Xhamster PervertMonkey
3
3
  // @namespace pervertmonkey
4
- // @version 5.0.16
4
+ // @version 5.0.20
5
5
  // @author violent-orangutan
6
6
  // @description Infinite scroll [optional], Filter by Title, Duration and Watched/Unwatched. Sort by Duration and Views
7
7
  // @license MIT
8
8
  // @icon https://www.google.com/s2/favicons?sz=64&domain=xhamster.com
9
- // @homepage https://github.com/smartacephale/sleazy-fork
10
- // @homepageURL https://github.com/smartacephale/sleazy-fork
11
- // @source github:smartacephale/sleazy-fork
9
+ // @homepage https://github.com/smartacephale/sleazy-fork#readme
10
+ // @homepageURL https://sleazyfork.org/en/users/1253342-smartacephale
11
+ // @source https://github.com/smartacephale
12
12
  // @supportURL https://github.com/smartacephale/sleazy-fork/issues
13
13
  // @match https://*.xhamster.com/*
14
14
  // @match https://*.xhamster.*/*
15
15
  // @exclude https://*.xhamster.com/embed*
16
- // @require https://cdn.jsdelivr.net/npm/pervert-monkey@1.0.22/dist/core/pervertmonkey.core.umd.js
16
+ // @require https://cdn.jsdelivr.net/npm/pervert-monkey@1.0.24/dist/core/pervertmonkey.core.umd.js
17
17
  // @require data:application/javascript,var core = window.pervertmonkey.core || pervertmonkey.core; var utils = core;
18
18
  // @grant GM_addElement
19
19
  // @grant GM_addStyle
@@ -1,17 +1,17 @@
1
1
  // ==UserScript==
2
2
  // @name XVideos PervertMonkey
3
3
  // @namespace pervertmonkey
4
- // @version 4.0.16
4
+ // @version 4.0.20
5
5
  // @author violent-orangutan
6
6
  // @description Infinite scroll [optional], Filter by Title, Uploader and Duration. Sort by Duration and Views.
7
7
  // @license MIT
8
8
  // @icon https://www.google.com/s2/favicons?sz=64&domain=xvideos.com
9
- // @homepage https://github.com/smartacephale/sleazy-fork
10
- // @homepageURL https://github.com/smartacephale/sleazy-fork
11
- // @source github:smartacephale/sleazy-fork
9
+ // @homepage https://github.com/smartacephale/sleazy-fork#readme
10
+ // @homepageURL https://sleazyfork.org/en/users/1253342-smartacephale
11
+ // @source https://github.com/smartacephale
12
12
  // @supportURL https://github.com/smartacephale/sleazy-fork/issues
13
13
  // @match https://*.xvideos.com/*
14
- // @require https://cdn.jsdelivr.net/npm/pervert-monkey@1.0.22/dist/core/pervertmonkey.core.umd.js
14
+ // @require https://cdn.jsdelivr.net/npm/pervert-monkey@1.0.24/dist/core/pervertmonkey.core.umd.js
15
15
  // @require data:application/javascript,var core = window.pervertmonkey.core || pervertmonkey.core; var utils = core;
16
16
  // @grant GM_addStyle
17
17
  // @grant unsafeWindow
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "pervert-monkey",
3
3
  "description": "daddy told us not to be ashamed of our userscripts",
4
- "version": "1.0.22",
4
+ "version": "1.0.24",
5
5
  "license": "MIT",
6
6
  "keywords": [
7
7
  "userscript",
@@ -42,7 +42,7 @@
42
42
  },
43
43
  "devDependencies": {
44
44
  "@types/node": "^25.2.3",
45
- "jabroni-outfit": "^2.1.3",
45
+ "jabroni-outfit": "^2.1.4",
46
46
  "typescript": "^5.9.3",
47
47
  "vite": "^6.4.1",
48
48
  "vite-plugin-dts": "^4.5.4"