No Wandering

Prevent wandering. Show a dialog when you try to visit a new page, and the action is prevented.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name        No Wandering
// @name:zh-CN  阻止摸鱼
// @namespace   yuandi42
// @version     0.0.1
// @grant       none
// @include     *.bilibili.com*
// @include     *hentaihand.com*
// @description Prevent  wandering. Show a dialog when you try to visit a new page, and the action is prevented.
// @description:zh-CN 防止漫游。在尝试访问新页面时弹框报警。离开摸鱼,拥抱效率!
// ==/UserScript==

(function () {
    
    alert("Go to study please, asshole:(");
    window.close();window.location = "about:blank";
})()