Cookie clicker tools (visual)
当前为
// ==UserScript==
// @name Cookie clicker tools
// @namespace orteil.dashnet.org
// @version 1.1
// @description Cookie clicker tools (visual)
// @author Anton
// @match http://orteil.dashnet.org/cookieclicker/*
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
// ==/UserScript==
(function() {
'use strict';
if (console) console.log('Cookies?');
var t = setInterval(function() {
var x = document.querySelectorAll('.icon:not([id^=product])')[0].offsetParent;
if (x !== null) {
var $tooltip = $(x);
var price = $tooltip.find('span.price').text;
var priceNum = parseFloat(price);
var mult = 1;
if (price.indexOf('billion') > -1) mult = 1E9;
else if (price.indexOf('million') > -1) mult = 1E6;
var totalPrice = priceNum * mult;
if (console) console.log(totalPrice);
}
}, 500);
})();