Bypass Highland Coffee

Go fight HighlandCoffee hotspot!

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==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!');
}