Detect

try to take over the world!

目前為 2018-06-01 提交的版本,檢視 最新版本

/* global $ */
// ==UserScript==
// @name         Detect
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        https://www.ha-lab.com/adDone?adKey=*
// @grant        none
// ==/UserScript==

(function() {
    var thing = $('body:contains("ban")').length > 0
    if(thing) {
        window.location.href = "https://www.ha-lab.com/games/dragon-city";
    }
    else {
    }
})();