☰

Pichunterfix

Este script corrige bugs na tela de favoritos do Pichunter, durante 30 segundos, antes de parar de rodar.

スクリプトをインストールするには、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 tなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

(ユーザースタイル管理ツールは設定済みなのでインストール!)

このスクリプトの質問や評価の投稿はこちら、通報はこちらへお寄せください
// ==UserScript==
// @name        Pichunterfix
// @description Este script corrige bugs na tela de favoritos do Pichunter, durante 30 segundos, antes de parar de rodar.
// @match 	    *://*.pichunter.com/favorites/*
// @run-at      document-end
// @version     1.0.2
// @grant       none
// @namespace https://greasyfork.org/users/248858
// ==/UserScript==

setTimeout(fun, 2000);
setTimeout(fun, 4000);
setTimeout(fun, 6000);
setTimeout(fun, 8000); 
setTimeout(fun, 10000); 
setTimeout(fun, 12000); 
setTimeout(fun, 14000); 
setTimeout(fun, 16000); 
setTimeout(fun, 18000); 
setTimeout(fun, 20000); 
setTimeout(fun, 22000); 
setTimeout(fun, 24000); 
setTimeout(fun, 26000); 
setTimeout(fun, 28000); 
setTimeout(fun, 30000);


function fun() {
	var x = document.getElementsByClassName("wlGal"), i;
	for (i = 0; i < x.length; i++) {
  	x[i].style.display = "inline-block"; 
	} 
	var x = document.getElementsByClassName("wlRemove"), i;
	for (i = 0; i < x.length; i++) {
  	x[i].style.display = "inline-block"; 
	} 
}