To be used with the Ghost Trappers Facebook game. This script will alert you when you received the loot you specify
当前为
// ==UserScript==
// @name Ghost Trappers - Loot Alerter
// @author Rani Kheir
// @version 1.0
// @description To be used with the Ghost Trappers Facebook game. This script will alert you when you received the loot you specify
// @include *ghost-trappers.com*
// @icon http://i44.photobucket.com/albums/f36/Rani-Kheir/ghosticon_zpsc395e1ce.png
// @copyright 2015+, Rani Kheir
// @namespace https://greasyfork.org/users/4271
// ==/UserScript==
////////////////////////////////////////////////////////////////////
/////
///// To use the script edit the text that says:
/////
///// EDIT THIS TEXT HERE
/////
///// in this statement:
/////
///// if (obtainFirstLog.match(/EDIT THIS TEXT HERE/i))
/////
////////////////////////////////////////////////////////////////////
var obtainFirstLog = document.getElementsByClassName('logText')[0].innerHTML;
if (obtainFirstLog.match(/EDIT THIS TEXT HERE/i))
{ alert("Congratulations!\n\nThe word or sentence you were looking for has been found!"); }