Sleazy Fork is available in English.

Ebalka PervertMonkey

Infinite scroll [optional], Filter by Title and Duration, Sort by Duration, Download button.

2026-08-14 기준 버전입니다. 최신 버전을 확인하세요.

이 스크립트를 설치하려면 Tampermonkey, Greasemonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

이 스크립트를 설치하려면 Tampermonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey 또는 Userscripts와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 유저 스크립트 관리자 확장 프로그램이 필요합니다.

(이미 유저 스크립트 관리자가 설치되어 있습니다. 설치를 진행합니다!)

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

(이미 유저 스타일 관리자가 설치되어 있습니다. 설치를 진행합니다!)

// ==UserScript==
// @name         Ebalka PervertMonkey
// @namespace    pervertmonkey
// @version      3.0.21
// @author       violent-orangutan
// @description  Infinite scroll [optional], Filter by Title and Duration, Sort by Duration, Download button.
// @license      MIT
// @icon         https://www.google.com/s2/favicons?sz=64&domain=ebalka.zip
// @homepage     https://github.com/smartacephale/sleazy-fork#readme
// @homepageURL  https://sleazyfork.org/en/users/1253342-smartacephale
// @source       https://github.com/smartacephale/sleazy-fork
// @supportURL   https://github.com/smartacephale/sleazy-fork/issues
// @match        https://b.ebalka.zip/*
// @match        https://a.ebalka.love/*
// @match        https://*ebalka.*.*/*
// @match        https://*.ebalk*.*/*
// @match        https://*.fuckingbear*.*/*
// @require      https://cdn.jsdelivr.net/npm/[email protected]/dist/core/pervertmonkey.core.umd.js
// @grant        GM_addStyle
// @grant        unsafeWindow
// @run-at       document-idle
// ==/UserScript==

var ___core = window.pervertmonkey.core || pervertmonkey.core;
var ___utils = ___core;


(function(___core, ___utils) {
	"use strict";
	new ___core.Rules({
		containerSelectorLast: ".content__video",
		paginationStrategyOptions: { paginationSelector: ".pagination:not([id *= member])" },
		thumbs: { selector: ".card_video" },
		thumb: { selectors: {
			title: ".card__title",
			duration: ".card__spot > span:last-child",
			hd: {
				selector: ".card__icons > .card__icon",
				type: "boolean"
			}
		} },
		animatePreview,
		schemeOptions: [
			"Title Filter",
			"Duration Filter",
			"HD Filter",
			"Sort By Duration",
			"Badge",
			"Advanced"
		]
	});
	function animatePreview(container) {
		function animateThumb(thumb) {
			const e = thumb.querySelector(".card__thumb_video");
			e.classList.toggle("video-on");
			const src = e.querySelector(".card__image")?.getAttribute("data-preview");
			const videoElem = (0, ___utils.parseHtml)(`<video style="position: absolute; left: 0px; top: 0px; visibility: visible; margin-top: -1px;"
      autoplay="" loop="" playsinline="true" webkit-playsinline="true" src="${src}"></video>`);
			e.appendChild(videoElem);
			return () => {
				e.classList.toggle("video-on");
				(0, ___utils.exterminateVideo)(videoElem);
			};
		}
		___utils.OnHover.create(container, ".card_video", (target) => {
			return animateThumb(target.closest(".card"));
		});
	}
	document.querySelector(".tabs-menu") && (0, ___utils.downloader)({
		append: ".tabs-menu",
		doBefore: () => document.querySelector("video")?.click(),
		buttonHtml: "<li class=\"ml-20\"><a class=\"button button_regular button_list root__link\">Download ⤓</a></li>"
	});
})(___core, ___utils);