您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Handle Internet Positif redirected (blocked) page
// ==UserScript== // @name Internet Positif Redirect // @namespace https://github.com/ditdot // @description Handle Internet Positif redirected (blocked) page // @author Dit Dot <[email protected]> // @include *://internetpositif.uzone.id/* // @version 0.1 // @grant none // @run-at document-start // @license WTFPL // ==/UserScript== 'use strict'; (function (location) { location.href = 'data:text/html;charset=utf-8,' + encodeURIComponent( '<!DOCTYPE html>' + '<html lang="en">' + '<head><title>Blocked by Internet Positif</title></head>' + '<body>' + '<h1>Blocked by Internet Positif</h1>' + '<h3>' + document.referrer + '</h3>' + '</body>' + '</html>' ) }) (window.location);