返回首頁 

Greasy Fork is available in English.

Bypass Highland Coffee

Go fight HighlandCoffee hotspot!


Installer dette script?
// ==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('####ing HighlandCoffee HotSpot...');document.getElementsByName('redir')[0].value = window.location.href;document.forms[0].submit();} else {console.warn('There is no hotspot to bypass, #### Highland!');}