Erome PervertMonkey

Infinite scroll [optional], Filter by Title, Uploader and Video/Photo albums, Sort by Views. Show/Hide Photos in album. Remove disclaimer. Restore Search Bar

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

이 스크립트를 설치하려면 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         Erome PervertMonkey
// @namespace    pervertmonkey
// @version      5.0.21
// @author       violent-orangutan
// @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
// @license      MIT
// @icon         https://www.google.com/s2/favicons?sz=64&domain=erome.com
// @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        *://*.erome.com/*
// @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) {
	"use strict";
	var _GM_addStyle = (() => typeof GM_addStyle != "undefined" ? GM_addStyle : void 0)();
	var $ = (() => typeof unsafeWindow != "undefined" ? unsafeWindow : void 0)().$;
	var rules = new ___core.Rules({
		containerSelector: "#albums",
		gropeStrategy: "all-in-one",
		thumbs: { selector: "div[id^=album-]" },
		thumb: { selectors: {
			title: ".album-title",
			uploader: ".album-user",
			videoAlbum: {
				selector: ".album-videos",
				type: "boolean"
			},
			views: {
				selector: ".album-bottom-views",
				type: "float"
			}
		} },
		storeOptions: { showPhotos: true },
		customDataFilterFns: [{ filterPhotoAlbums: (el, state) => !!state.filterPhotoAlbums && !el.videoAlbum }, { filterVideoAlbums: (el, state) => !!state.filterVideoAlbums && !!el.videoAlbum }],
		schemeOptions: [
			"Title Filter",
			"Uploader Filter",
			{
				title: "Filter Albums",
				content: [{
					filterVideoAlbums: false,
					label: "photo"
				}, {
					filterPhotoAlbums: false,
					label: "video"
				}]
			},
			"Sort By Views",
			"Badge",
			"Advanced"
		],
		containMutationEnabled: false
	});
	_GM_addStyle(`
.inactive-gm { background: #a09f9d; }
.active-gm { background: #eb6395 !important; }
`);
	(function disableDisclaimer() {
		if (!$("#disclaimer").length) return;
		$.ajax({
			type: "POST",
			url: "/user/disclaimer",
			async: true
		});
		$("#disclaimer").remove();
		$("body").css("overflow", "visible");
	})();
	var IS_ALBUM_PAGE = /^\/a\//.test(window.location.pathname);
	function togglePhotoElements() {
		$(".media-group > div:last-child:not(.video)").toggle(rules.store.state.showPhotos);
		$("#togglePhotos").toggleClass("active-gm", rules.store.state.showPhotos);
		$("#togglePhotos").text(!rules.store.state.showPhotos ? "show photos" : "hide photos");
	}
	function setupAlbumPage() {
		$("#user_name").parent().append("<button id=\"togglePhotos\" class=\"btn btn-pink inactive-gm\">show/hide photos</button>");
		$("#togglePhotos").on("click", () => {
			rules.store.state.showPhotos = !rules.store.state.showPhotos;
		});
		rules.store.stateSubject.subscribe(() => {
			togglePhotoElements();
		});
		togglePhotoElements();
	}
	if (IS_ALBUM_PAGE) setupAlbumPage();
	(function restoreSearchBar() {
		$("[aria-label=\"Search\"]").click(() => $("#searchModal").show());
		$("#searchModal .close").click(() => $("#searchModal").hide());
	})();
})(___core);