您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Bypasses the IndiHome landing page that appeares on HTTP destinations.
// ==UserScript== // @name IndiHome Landing Page Skipper // @namespace Hans5958 // @version 1 // @description Bypasses the IndiHome landing page that appeares on HTTP destinations. // @copyright Hans5958 // @license MIT // @match http://welcome.indihome.co.id // @grant none // @homepageURL https://github.com/Hans5958/userscripts // @supportURL https://github.com/Hans5958/userscripts/issues // ==/UserScript== function a() { var href = document.querySelector(".footer a").href console.log(href) if (!href) {a(); return} document.body.innerHTML="<h1>Skipping landing page...</h1>" window.title = "Skipping landing page..." document.location.replace(href) } a()