No Wandering

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

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

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

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

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

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

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

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.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==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";
})()