NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name SmokeyMouths Unlimited Tour
// @namespace http://tampermonkey.net/
// @version 0.3
// @description Increase maximum clicks and remove banner!
// @author volkan-k
// @match http://smokeymouths.com/tour/*
// @grant none
// @license MIT
// ==/UserScript==
function addGlobalStyle(css, once,id) {
var head, style;
head = document.getElementsByTagName('head')[0];
if (!head) {
return;
}
if (once && document.getElementById(id)) {
return;
}
style = document.createElement('style');
style.setAttribute("type", "text/css");
if (typeof id === "string"){
style.setAttribute("id", id);
}
style.innerHTML = css;
head.appendChild(style);
}
addGlobalStyle(".views_remaining { display: none !important; }", true,"smokeym");
window.maxClicks = 2000000000;
window.tlimit = function () {
return true;
}
window.loadbanner = function () {
replay();
return;
}
window.setCookieTLimit = function () {
return;
}
window.getCookieTLimit = function () {
return 0;
}