您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
打开 hentaiverse.org/popup 时自动跳转窗口版HV
// ==UserScript== // @name 自动窗口化HV // @name:en Automatic windowing of HV // @name:zh-TW 自動窗口化HV // @name:ja 自動ウィンドウ化HV // @namespace hentaiverse.org/popup // @version 0.1 // @author FeiZhaixiage // @description 打开 hentaiverse.org/popup 时自动跳转窗口版HV // @description:en Automatically switch to the window version of HV when opening hentaiverse.org/popup. // @description:zh-tw 打開 hentaiverse.org/popup 時自動跳轉窗口版HV // @description:ja サイト「hentaiverse.org/popup」を開くと、自動的にウィンドウ版のHVにリダイレクトされます。 // @match https://hentaiverse.org/popup // @grant none // @run-at document-start // @license MIT // ==/UserScript== (function() { 'use strict'; function popUp(URL,w,h) { window.open(URL,"_pu"+(Math.random()+"").replace(/0\./,""),"toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width="+w+",height="+h+",left="+((screen.width-w)/2)+",top="+((screen.height-h)/2)); return false; } popUp('https://hentaiverse.org/',1250,720); window.close(); })();