您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Go fight HighlandCoffee hotspot!
// ==UserScript== // @name Bypass Highland Coffee // @namespace https://greasyfork.org/en/users/10166-moriarty // @description Go fight HighlandCoffee hotspot! // @author Moriarty // @include http://* // @include https://* // @version 0.1.2 // @license GNU/GPL v3 // @grant none // ==/UserScript== var docTitle = document.title; var searchText = 'Viet Thai International | Connect'; var isHighlandCoffee = (docTitle === searchText) ? true : false; if (isHighlandCoffee) { console.info('Fucking HighlandCoffee HotSpot...'); document.getElementsByName('redir')[0].value = window.location.href; document.forms[0].submit(); } else { console.warn('There is no hotspot to bypass, fuck Highland!'); }